ETH Price: $3,135.05 (+0.42%)
Gas: 5 Gwei

Token

Dawn (DAWN)
 

Overview

Max Total Supply

10,000 DAWN

Holders

299

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
1inch v5: Aggregation Router
Balance
0.000000000000000001 DAWN
0x1111111254eeb25477b68fb85ed929f73a960582
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:
Dawn

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-12
*/

/*

A new Dawn for 404 - the most gas efficient ERC 404 protocol, utilising multiple ETH protocols, ERC20,721,1155.
The first industry standard 10,000 3D rendered NFT supply collection. 
We are also the first ERC 404 project with a toggle switch in our CA allowing for a 
more advanced 'loot box' style NFT reveal, whilst still maintaining the 404 theme of allowing re-mint.

Web: dawn404.com
Twitter / X: https://twitter.com/Dawneth404
TG: https://t.me/Dawn404Portal

*/


// SPDX-License-Identifier: MIT

pragma solidity 0.8.24;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

interface IERC20 {
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, uint256 value) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 value) external returns (bool);
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
}

interface IERC20Errors {
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
    error ERC20InvalidSender(address sender);
    error ERC20InvalidReceiver(address receiver);
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
    error ERC20InvalidApprover(address approver);
    error ERC20InvalidSpender(address spender);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

interface IERC31337 {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * Cannot burn from the zero address.
     */
    error BurnFromZeroAddress();

    /**
     * Cannot burn from the address that doesn't owne the token.
     */
    error BurnFromNonOnwerAddress();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from` or the `amount` is not 1.
     */
    error TransferFromIncorrectOwnerOrInvalidAmount();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC1155Receiver interface.
     */
    error TransferToNonERC1155ReceiverImplementer();
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The length of input arraies is not matching.
     */
    error InputLengthMistmatch();

    function isOwnerOf(address account, uint256 id) external view returns(bool);
}

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

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

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


abstract contract ERC721Receiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721Receiver.onERC721Received.selector;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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


/// @notice Library for bit twiddling and boolean operations.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibBit.sol)
/// @author Inspired by (https://graphics.stanford.edu/~seander/bithacks.html)
library LibBit {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                  BIT TWIDDLING OPERATIONS                  */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Find last set.
    /// Returns the index of the most significant bit of `x`,
    /// counting from the least significant bit position.
    /// If `x` is zero, returns 256.
    function fls(uint256 x) internal pure returns (uint256 r) {
        /// @solidity memory-safe-assembly
        assembly {
            r := or(shl(8, iszero(x)), shl(7, lt(0xffffffffffffffffffffffffffffffff, x)))
            r := or(r, shl(6, lt(0xffffffffffffffff, shr(r, x))))
            r := or(r, shl(5, lt(0xffffffff, shr(r, x))))
            r := or(r, shl(4, lt(0xffff, shr(r, x))))
            r := or(r, shl(3, lt(0xff, shr(r, x))))
            // forgefmt: disable-next-item
            r := or(r, byte(and(0x1f, shr(shr(r, x), 0x8421084210842108cc6318c6db6d54be)),
                0x0706060506020504060203020504030106050205030304010505030400000000))
        }
    }

    /// @dev Count leading zeros.
    /// Returns the number of zeros preceding the most significant one bit.
    /// If `x` is zero, returns 256.
    function clz(uint256 x) internal pure returns (uint256 r) {
        /// @solidity memory-safe-assembly
        assembly {
            r := shl(7, lt(0xffffffffffffffffffffffffffffffff, x))
            r := or(r, shl(6, lt(0xffffffffffffffff, shr(r, x))))
            r := or(r, shl(5, lt(0xffffffff, shr(r, x))))
            r := or(r, shl(4, lt(0xffff, shr(r, x))))
            r := or(r, shl(3, lt(0xff, shr(r, x))))
            // forgefmt: disable-next-item
            r := add(xor(r, byte(and(0x1f, shr(shr(r, x), 0x8421084210842108cc6318c6db6d54be)),
                0xf8f9f9faf9fdfafbf9fdfcfdfafbfcfef9fafdfafcfcfbfefafafcfbffffffff)), iszero(x))
        }
    }

    /// @dev Find first set.
    /// Returns the index of the least significant bit of `x`,
    /// counting from the least significant bit position.
    /// If `x` is zero, returns 256.
    /// Equivalent to `ctz` (count trailing zeros), which gives
    /// the number of zeros following the least significant one bit.
    function ffs(uint256 x) internal pure returns (uint256 r) {
        /// @solidity memory-safe-assembly
        assembly {
            // Isolate the least significant bit.
            let b := and(x, add(not(x), 1))

            r := or(shl(8, iszero(x)), shl(7, lt(0xffffffffffffffffffffffffffffffff, b)))
            r := or(r, shl(6, lt(0xffffffffffffffff, shr(r, b))))
            r := or(r, shl(5, lt(0xffffffff, shr(r, b))))

            // For the remaining 32 bits, use a De Bruijn lookup.
            // forgefmt: disable-next-item
            r := or(r, byte(and(div(0xd76453e0, shr(r, b)), 0x1f),
                0x001f0d1e100c1d070f090b19131c1706010e11080a1a141802121b1503160405))
        }
    }

    /// @dev Returns the number of set bits in `x`.
    function popCount(uint256 x) internal pure returns (uint256 c) {
        /// @solidity memory-safe-assembly
        assembly {
            let max := not(0)
            let isMax := eq(x, max)
            x := sub(x, and(shr(1, x), div(max, 3)))
            x := add(and(x, div(max, 5)), and(shr(2, x), div(max, 5)))
            x := and(add(x, shr(4, x)), div(max, 17))
            c := or(shl(8, isMax), shr(248, mul(x, div(max, 255))))
        }
    }

    /// @dev Returns whether `x` is a power of 2.
    function isPo2(uint256 x) internal pure returns (bool result) {
        /// @solidity memory-safe-assembly
        assembly {
            // Equivalent to `x && !(x & (x - 1))`.
            result := iszero(add(and(x, sub(x, 1)), iszero(x)))
        }
    }

    /// @dev Returns `x` reversed at the bit level.
    function reverseBits(uint256 x) internal pure returns (uint256 r) {
        uint256 m0 = 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f;
        uint256 m1 = m0 ^ (m0 << 2);
        uint256 m2 = m1 ^ (m1 << 1);
        r = reverseBytes(x);
        r = (m2 & (r >> 1)) | ((m2 & r) << 1);
        r = (m1 & (r >> 2)) | ((m1 & r) << 2);
        r = (m0 & (r >> 4)) | ((m0 & r) << 4);
    }

    /// @dev Returns `x` reversed at the byte level.
    function reverseBytes(uint256 x) internal pure returns (uint256 r) {
        unchecked {
            // Computing masks on-the-fly reduces bytecode size by about 200 bytes.
            uint256 m0 = 0x100000000000000000000000000000001 * (~toUint(x == 0) >> 192);
            uint256 m1 = m0 ^ (m0 << 32);
            uint256 m2 = m1 ^ (m1 << 16);
            uint256 m3 = m2 ^ (m2 << 8);
            r = (m3 & (x >> 8)) | ((m3 & x) << 8);
            r = (m2 & (r >> 16)) | ((m2 & r) << 16);
            r = (m1 & (r >> 32)) | ((m1 & r) << 32);
            r = (m0 & (r >> 64)) | ((m0 & r) << 64);
            r = (r >> 128) | (r << 128);
        }
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                     BOOLEAN OPERATIONS                     */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    // A Solidity bool on the stack or memory is represented as a 256-bit word.
    // Non-zero values are true, zero is false.
    // A clean bool is either 0 (false) or 1 (true) under the hood.
    // Usually, if not always, the bool result of a regular Solidity expression,
    // or the argument of a public/external function will be a clean bool.
    // You can usually use the raw variants for more performance.
    // If uncertain, test (best with exact compiler settings).
    // Or use the non-raw variants (compiler can sometimes optimize out the double `iszero`s).

    /// @dev Returns `x & y`. Inputs must be clean.
    function rawAnd(bool x, bool y) internal pure returns (bool z) {
        /// @solidity memory-safe-assembly
        assembly {
            z := and(x, y)
        }
    }

    /// @dev Returns `x & y`.
    function and(bool x, bool y) internal pure returns (bool z) {
        /// @solidity memory-safe-assembly
        assembly {
            z := and(iszero(iszero(x)), iszero(iszero(y)))
        }
    }

    /// @dev Returns `x | y`. Inputs must be clean.
    function rawOr(bool x, bool y) internal pure returns (bool z) {
        /// @solidity memory-safe-assembly
        assembly {
            z := or(x, y)
        }
    }

    /// @dev Returns `x | y`.
    function or(bool x, bool y) internal pure returns (bool z) {
        /// @solidity memory-safe-assembly
        assembly {
            z := or(iszero(iszero(x)), iszero(iszero(y)))
        }
    }

    /// @dev Returns 1 if `b` is true, else 0. Input must be clean.
    function rawToUint(bool b) internal pure returns (uint256 z) {
        /// @solidity memory-safe-assembly
        assembly {
            z := b
        }
    }

    /// @dev Returns 1 if `b` is true, else 0.
    function toUint(bool b) internal pure returns (uint256 z) {
        /// @solidity memory-safe-assembly
        assembly {
            z := iszero(iszero(b))
        }
    }
}

/// @notice Library for storage of packed unsigned booleans.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibBitmap.sol)
/// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/LibBitmap.sol)
/// @author Modified from Solidity-Bits (https://github.com/estarriolvetch/solidity-bits/blob/main/contracts/BitMaps.sol)
library LibBitmap {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                         CONSTANTS                          */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev The constant returned when a bitmap scan does not find a result.
    uint256 internal constant NOT_FOUND = type(uint256).max;

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                          STRUCTS                           */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev A bitmap in storage.
    struct Bitmap {
        mapping(uint256 => uint256) map;
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                         OPERATIONS                         */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Returns the boolean value of the bit at `index` in `bitmap`.
    function get(Bitmap storage bitmap, uint256 index) internal view returns (bool isSet) {
        // It is better to set `isSet` to either 0 or 1, than zero vs non-zero.
        // Both cost the same amount of gas, but the former allows the returned value
        // to be reused without cleaning the upper bits.
        uint256 b = (bitmap.map[index >> 8] >> (index & 0xff)) & 1;
        /// @solidity memory-safe-assembly
        assembly {
            isSet := b
        }
    }

    /// @dev Updates the bit at `index` in `bitmap` to true.
    function set(Bitmap storage bitmap, uint256 index) internal {
        bitmap.map[index >> 8] |= (1 << (index & 0xff));
    }

    /// @dev Updates the bit at `index` in `bitmap` to false.
    function unset(Bitmap storage bitmap, uint256 index) internal {
        bitmap.map[index >> 8] &= ~(1 << (index & 0xff));
    }

    /// @dev Flips the bit at `index` in `bitmap`.
    /// Returns the boolean result of the flipped bit.
    function toggle(Bitmap storage bitmap, uint256 index) internal returns (bool newIsSet) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x20, bitmap.slot)
            mstore(0x00, shr(8, index))
            let storageSlot := keccak256(0x00, 0x40)
            let shift := and(index, 0xff)
            let storageValue := xor(sload(storageSlot), shl(shift, 1))
            // It makes sense to return the `newIsSet`,
            // as it allow us to skip an additional warm `sload`,
            // and it costs minimal gas (about 15),
            // which may be optimized away if the returned value is unused.
            newIsSet := and(1, shr(shift, storageValue))
            sstore(storageSlot, storageValue)
        }
    }

    /// @dev Updates the bit at `index` in `bitmap` to `shouldSet`.
    function setTo(Bitmap storage bitmap, uint256 index, bool shouldSet) internal {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x20, bitmap.slot)
            mstore(0x00, shr(8, index))
            let storageSlot := keccak256(0x00, 0x40)
            let storageValue := sload(storageSlot)
            let shift := and(index, 0xff)
            sstore(
                storageSlot,
                // Unsets the bit at `shift` via `and`, then sets its new value via `or`.
                or(and(storageValue, not(shl(shift, 1))), shl(shift, iszero(iszero(shouldSet))))
            )
        }
    }

    /// @dev Consecutively sets `amount` of bits starting from the bit at `start`.
    function setBatch(Bitmap storage bitmap, uint256 start, uint256 amount) internal {
        /// @solidity memory-safe-assembly
        assembly {
            let max := not(0)
            let shift := and(start, 0xff)
            mstore(0x20, bitmap.slot)
            mstore(0x00, shr(8, start))
            if iszero(lt(add(shift, amount), 257)) {
                let storageSlot := keccak256(0x00, 0x40)
                sstore(storageSlot, or(sload(storageSlot), shl(shift, max)))
                let bucket := add(mload(0x00), 1)
                let bucketEnd := add(mload(0x00), shr(8, add(amount, shift)))
                amount := and(add(amount, shift), 0xff)
                shift := 0
                for {} iszero(eq(bucket, bucketEnd)) { bucket := add(bucket, 1) } {
                    mstore(0x00, bucket)
                    sstore(keccak256(0x00, 0x40), max)
                }
                mstore(0x00, bucket)
            }
            let storageSlot := keccak256(0x00, 0x40)
            sstore(storageSlot, or(sload(storageSlot), shl(shift, shr(sub(256, amount), max))))
        }
    }

    /// @dev Consecutively unsets `amount` of bits starting from the bit at `start`.
    function unsetBatch(Bitmap storage bitmap, uint256 start, uint256 amount) internal {
        /// @solidity memory-safe-assembly
        assembly {
            let shift := and(start, 0xff)
            mstore(0x20, bitmap.slot)
            mstore(0x00, shr(8, start))
            if iszero(lt(add(shift, amount), 257)) {
                let storageSlot := keccak256(0x00, 0x40)
                sstore(storageSlot, and(sload(storageSlot), not(shl(shift, not(0)))))
                let bucket := add(mload(0x00), 1)
                let bucketEnd := add(mload(0x00), shr(8, add(amount, shift)))
                amount := and(add(amount, shift), 0xff)
                shift := 0
                for {} iszero(eq(bucket, bucketEnd)) { bucket := add(bucket, 1) } {
                    mstore(0x00, bucket)
                    sstore(keccak256(0x00, 0x40), 0)
                }
                mstore(0x00, bucket)
            }
            let storageSlot := keccak256(0x00, 0x40)
            sstore(
                storageSlot, and(sload(storageSlot), not(shl(shift, shr(sub(256, amount), not(0)))))
            )
        }
    }

    /// @dev Returns number of set bits within a range by
    /// scanning `amount` of bits starting from the bit at `start`.
    function popCount(Bitmap storage bitmap, uint256 start, uint256 amount)
        internal
        view
        returns (uint256 count)
    {
        unchecked {
            uint256 bucket = start >> 8;
            uint256 shift = start & 0xff;
            if (!(amount + shift < 257)) {
                count = LibBit.popCount(bitmap.map[bucket] >> shift);
                uint256 bucketEnd = bucket + ((amount + shift) >> 8);
                amount = (amount + shift) & 0xff;
                shift = 0;
                for (++bucket; bucket != bucketEnd; ++bucket) {
                    count += LibBit.popCount(bitmap.map[bucket]);
                }
            }
            count += LibBit.popCount((bitmap.map[bucket] >> shift) << (256 - amount));
        }
    }

    /// @dev Returns the index of the most significant set bit before the bit at `before`.
    /// If no set bit is found, returns `NOT_FOUND`.
    function findLastSet(Bitmap storage bitmap, uint256 before)
        internal
        view
        returns (uint256 setBitIndex)
    {
        uint256 bucket;
        uint256 bucketBits;
        /// @solidity memory-safe-assembly
        assembly {
            setBitIndex := not(0)
            bucket := shr(8, before)
            mstore(0x00, bucket)
            mstore(0x20, bitmap.slot)
            let offset := and(0xff, not(before)) // `256 - (255 & before) - 1`.
            bucketBits := shr(offset, shl(offset, sload(keccak256(0x00, 0x40))))
            if iszero(or(bucketBits, iszero(bucket))) {
                for {} 1 {} {
                    bucket := add(bucket, setBitIndex) // `sub(bucket, 1)`.
                    mstore(0x00, bucket)
                    bucketBits := sload(keccak256(0x00, 0x40))
                    if or(bucketBits, iszero(bucket)) { break }
                }
            }
        }
        if (bucketBits != 0) {
            setBitIndex = (bucket << 8) | LibBit.fls(bucketBits);
            /// @solidity memory-safe-assembly
            assembly {
                setBitIndex := or(setBitIndex, sub(0, gt(setBitIndex, before)))
            }
        }
    }
}

contract ERC404a is Context, ERC165, IERC1155, IERC1155MetadataURI, IERC31337, IERC20Metadata, IERC20Errors, Ownable {

    using Address for address;
    using LibBitmap for LibBitmap.Bitmap;

    error InvalidQueryRange();

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;
    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // Mapping from accout to owned tokens
    mapping(address => LibBitmap.Bitmap) internal _owned;

    //Mapping of burnt tokens
    LibBitmap.Bitmap internal _burnt;
    
    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // NFT Approval
    mapping(uint256 => address) public getApproved;

    //Token balances
    mapping(address => uint256) internal _balances;

    //Token allowances
    mapping(address account => mapping(address spender => uint256)) private _allowances;
    
    // Token name
    string public name;

    // Token symbol
    string public symbol;

    // Decimals for supply
    uint8 public immutable decimals;

    // Total ERC20 supply
    uint256 public immutable totalSupply;

    // Tokens Per NFT
    uint256 public immutable decimalFactor;
    uint256 public immutable tokensPerNFT;

    // Don't mint for these wallets
    mapping(address => bool) public whitelist;

    // Easy Launch - auto-whitelist first transfer which is probably the LP
    uint256 public easyLaunch = 1;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_, string memory _name, string memory _symbol, uint8 _decimals, uint256 _totalNativeSupply, uint256 _tokensPerNFT) Ownable(msg.sender) {
        _setURI(uri_);
        _currentIndex = _startTokenId();
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        decimalFactor = 10 ** decimals;
        tokensPerNFT = _tokensPerNFT * decimalFactor;
        totalSupply = _totalNativeSupply * decimalFactor;
        whitelist[msg.sender] = true;
        _balances[msg.sender] = totalSupply;
        emit Transfer(address(0), msg.sender, totalSupply);
    }

    /**
     * @dev Returns if 1155 events are enabled.
     * Override or change to true for 1155 flag on etherscan.
     * In 1155 mode Etherscan ignores CA reported balances and incorrectly 
     * calculates wallet balances
     */
    function erc1155Enabled() internal pure virtual returns (bool) {
        return false;
    }

    /** @notice Initialization function to set pairs / etc
     *  saving gas by avoiding mint / burn on unnecessary targets
     */
    function setWhitelist(address target, bool state) public virtual onlyOwner {
        whitelist[target] = state;
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal pure virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        return _nextTokenId() - _startTokenId();
    }

    /**
     * @dev Returns true if the account owns the `id` token.
     */
    function isOwnerOf(address account, uint256 id) public view virtual override returns(bool) {
        return _owned[account].get(id);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            interfaceId == type(IERC31337).interfaceId ||
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f || // ERC165 interface ID for ERC721Metadata.
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev Returns the number of tokens owned by `owner`.
     */
    function balanceOf(address owner) public view virtual returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Returns the number of nfts owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function balanceOf(address owner, uint256 start, uint256 stop) public view virtual returns (uint256) {
        return _owned[owner].popCount(start, stop - start);
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        if(account == address(0)) {
            revert BalanceQueryForZeroAddress();
        }
        if(_owned[account].get(id)) {
            return 1;
        } else {
            return 0;
        }   
    }

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

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

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

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        if(from == _msgSender() || isApprovedForAll(from, _msgSender())){
            _safeTransferFrom(from, to, id, amount, data, true);
        } else {
            revert TransferCallerNotOwnerNorApproved();
        }
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        if(!(from == _msgSender() || isApprovedForAll(from, _msgSender()))) {
            revert TransferCallerNotOwnerNorApproved();
        }
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

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

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

        _beforeTokenTransfer(operator, from, to, ids);

        if(amount == 1 && _owned[from].get(id)) {
            _owned[from].unset(id);
            _owned[to].set(id);
            _transfer(from, to, tokensPerNFT, false);
        } else {
            revert TransferFromIncorrectOwnerOrInvalidAmount();
        }

        uint256 toMasked;
        uint256 fromMasked;
        assembly {
            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            toMasked := and(to, _BITMASK_ADDRESS)
            fromMasked := and(from, _BITMASK_ADDRESS)
            // Emit the `Transfer` event.
            log4(
                0, // Start of data (0, since no data).
                0, // End of data (0, since no data).
                _TRANSFER_EVENT_SIGNATURE, // Signature.
                fromMasked, // `from`.
                toMasked, // `to`.
                amount // `tokenId`.
            )
        }

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

        _afterTokenTransfer(operator, from, to, ids);

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

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

        if(to == address(0)) {
            revert TransferToZeroAddress();
        }
        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids);

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

            if(amount == 1 && _owned[from].get(id)) {
                _owned[from].unset(id);
                _owned[to].set(id);
            } else {
                revert TransferFromIncorrectOwnerOrInvalidAmount();
            }
        }
        _transfer(from, to, tokensPerNFT * ids.length, false);

        uint256 toMasked;
        uint256 fromMasked;
        uint256 end = ids.length + 1;

        // Use assembly to loop and emit the `Transfer` event for gas savings.
        // The duplicated `log4` removes an extra check and reduces stack juggling.
        // The assembly, together with the surrounding Solidity code, have been
        // delicately arranged to nudge the compiler into producing optimized opcodes.
        assembly {
            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            fromMasked := and(from, _BITMASK_ADDRESS)
            toMasked := and(to, _BITMASK_ADDRESS)
            // Emit the `Transfer` event.
            log4(
                0, // Start of data (0, since no data).
                0, // End of data (0, since no data).
                _TRANSFER_EVENT_SIGNATURE, // Signature.
                fromMasked, // `from`.
                toMasked, // `to`.
                mload(add(ids, 0x20)) // `tokenId`.
            )

            // The `iszero(eq(,))` check ensures that large values of `quantity`
            // that overflows uint256 will make the loop run out of gas.
            // The compiler will optimize the `iszero` away for performance.
            for {
                let arrayId := 2
            } iszero(eq(arrayId, end)) {
                arrayId := add(arrayId, 1)
            } {
                // Emit the `Transfer` event. Similar to above.
                log4(0, 0, _TRANSFER_EVENT_SIGNATURE, fromMasked, toMasked, mload(add(ids, mul(0x20, arrayId))))
            }
        }

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

        _afterTokenTransfer(operator, from, to, ids);

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

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

    function _mint(
        address to,
        uint256 amount
    ) internal virtual {
        _mint(to, amount, "");
    }

    /**
     * @dev Creates `amount` tokens, and assigns them to `to`.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `amount` cannot be zero.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 amount,
        bytes memory data
    ) internal virtual {
       (uint256[] memory ids, uint256[] memory amounts) =  _mintWithoutCheck(to, amount);

        uint256 end = _currentIndex;
        _doSafeBatchTransferAcceptanceCheck(_msgSender(), address(0), to, ids, amounts, data);
        if (_currentIndex != end) revert();
    }

    function _mintWithoutCheck(
        address to,
        uint256 amount
    ) internal virtual returns(uint256[] memory ids, uint256[] memory amounts) {

        if(to == address(0)) {
            revert MintToZeroAddress();
        }
        if(amount == 0) {
            revert MintZeroQuantity();
        }

        address operator = _msgSender();

        ids = new uint256[](amount);
        amounts = new uint256[](amount);
        uint256 startTokenId = _nextTokenId();

        unchecked {
            require(type(uint256).max - amount >= startTokenId);
            for(uint256 i = 0; i < amount; i++) {
                ids[i] = startTokenId + i;
                amounts[i] = 1;
            }
        }
        
        _beforeTokenTransfer(operator, address(0), to, ids);

        _owned[to].setBatch(startTokenId, amount);
        _currentIndex += amount;

        uint256 toMasked;
        uint256 end = startTokenId + amount;

        assembly {
            toMasked := and(to, _BITMASK_ADDRESS)
            log4(
                0,
                0,
                _TRANSFER_EVENT_SIGNATURE,
                0,
                toMasked,
                startTokenId
            )

            for {
                let tokenId := add(startTokenId, 1)
            } iszero(eq(tokenId, end)) {
                tokenId := add(tokenId, 1)
            } {
                log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
            }
        }

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

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

    }

    /**
     * @dev Destroys token of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have the token of token type `id`.
     */
    function _burn(
        address from,
        uint256 id
    ) internal virtual {
        if(from == address(0)){
            revert BurnFromZeroAddress();
        }

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

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

        if(!_owned[from].get(id) || _burnt.get(id)) {
            revert BurnFromNonOnwerAddress();
        }

        //_owned[from].unset(id);
        _burnt.set(id);

        uint256 fromMasked;
        assembly {
            fromMasked := and(from, _BITMASK_ADDRESS)
            log4(
                0,
                0,
                _TRANSFER_EVENT_SIGNATURE,
                fromMasked,
                0,
                id
            )
        }

        if(erc1155Enabled())
            emit TransferSingle(operator, from, address(0), id, 1);

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

    /**
     * @dev Destroys tokens of token types in `ids` from `from`
     * UNUSED - see next implementation
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have the token of token types in `ids`.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids
    ) internal virtual {
        if(from == address(0)){
            revert BurnFromZeroAddress();
        }

        address operator = _msgSender();

        uint256[] memory amounts = new uint256[](ids.length);

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

        unchecked {
            for(uint256 i = 0; i < ids.length; i++) {
                amounts[i] = 1;
                uint256 id = ids[i];
                if(!_owned[from].get(id)) {
                    revert BurnFromNonOnwerAddress();
                }
                _owned[from].unset(id);
            }
        }

        uint256 fromMasked;
        uint256 end = ids.length + 1;

        assembly {
            fromMasked := and(from, _BITMASK_ADDRESS)
            log4(
                0,
                0,
                _TRANSFER_EVENT_SIGNATURE,
                fromMasked,
                0,
                mload(add(ids, 0x20))
            )

            for {
                let arrayId := 2
            } iszero(eq(arrayId, end)) {
                arrayId := add(arrayId, 1)
            } {
                log4(0, 0, _TRANSFER_EVENT_SIGNATURE, fromMasked, 0, mload(add(ids, mul(0x20, arrayId))))
            }
        }
        
        if(erc1155Enabled())
            emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids);

    }

    function _burnBatch(
        address from,
        uint256 amount
    ) internal virtual {
        if(from == address(0)){
            revert BurnFromZeroAddress();
        }

        address operator = _msgSender();

        uint256 searchFrom = _nextTokenId();

        uint256[] memory amounts = new uint256[](amount);
        uint256[] memory ids = new uint256[](amount);

        unchecked {
            for(uint256 i = 0; i < amount; i++) {
                amounts[i] = 1;
                uint256 id = _owned[from].findLastSet(searchFrom);
                ids[i] = id;
                _owned[from].unset(id);
                searchFrom = id;
            }
        }

        //technically after, but we didn't have the IDs then
        _beforeTokenTransfer(operator, from, address(0), ids);

        uint256 fromMasked;
        uint256 end = amount + 1;

        assembly {
            fromMasked := and(from, _BITMASK_ADDRESS)
            log4(
                0,
                0,
                _TRANSFER_EVENT_SIGNATURE,
                fromMasked,
                0,
                mload(add(ids, 0x20))
            )

            for {
                let arrayId := 2
            } iszero(eq(arrayId, end)) {
                arrayId := add(arrayId, 1)
            } {
                log4(0, 0, _TRANSFER_EVENT_SIGNATURE, fromMasked, 0, mload(add(ids, mul(0x20, arrayId))))
            }
        }

        if(erc1155Enabled()) {
            if(amount == 1)
                emit TransferSingle(operator, from, address(0), ids[0], 1);
            else
                emit TransferBatch(operator, from, address(0), ids, amounts);
        }

        _afterTokenTransfer(operator, from, address(0), ids);

    }


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

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

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

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            if (IERC165(to).supportsInterface(type(IERC1155).interfaceId)) {
                try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                    if (response != IERC1155Receiver.onERC1155Received.selector) {
                        revert TransferToNonERC1155ReceiverImplementer();
                    }
                } catch Error(string memory reason) {
                    revert(reason);
                } catch {
                    revert TransferToNonERC1155ReceiverImplementer();
                }
            }
            else {
                try ERC721Receiver(to).onERC721Received(operator, from, id, data) returns (bytes4 response) {
                    if (response != ERC721Receiver.onERC721Received.selector) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } catch Error(string memory reason) {
                    revert(reason);
                } catch {
                    revert TransferToNonERC721ReceiverImplementer();
                }
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert TransferToNonERC1155ReceiverImplementer();
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert TransferToNonERC1155ReceiverImplementer();
            }
        }
    }

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

    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = msg.sender;
        _transfer(owner, to, value, true);
        return true;
    }

    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = msg.sender;
        if (value < _nextTokenId() && value > 0) {

            if(!isOwnerOf(owner, value)) {
                revert ERC20InvalidSender(owner);
            }

            getApproved[value] = spender;

            emit Approval(owner, spender, value);
        } else {
            _approve(owner, spender, value);
        }
        return true;
    }

    /// @notice Function for mixed transfers
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        if (value < _nextTokenId()) {
            if(!_owned[from].get(value)) {
                revert ERC20InvalidSpender(from);
            }    

            if (
                msg.sender != from &&
                !isApprovedForAll(from, msg.sender) &&
                msg.sender != getApproved[value]
            ) {
                revert ERC20InvalidSpender(msg.sender);
            }

            _transfer(from, to, tokensPerNFT, false);

            delete getApproved[value];

            _safeTransferFrom(from, to, value, 1, "", false);

        } else {
            _spendAllowance(from, msg.sender, value);
            _transfer(from, to, value, true);
        }
        return true;
    }

    function _transfer(address from, address to, uint256 value, bool mint) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value, mint);
    }

    function _update(address from, address to, uint256 value, bool mint) internal virtual {
        uint256 fromBalance = _balances[from];
        uint256 toBalance = _balances[to];
        if (fromBalance < value) {
            revert ERC20InsufficientBalance(from, fromBalance, value);
        }

        unchecked {
            // Overflow not possible: value <= fromBalance <= totalSupply.
            _balances[from] = fromBalance - value;

            // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
            _balances[to] = toBalance + value;
        }

        emit Transfer(from, to, value);

        if(mint) {
            // Skip burn for certain addresses to save gas
            bool wlf = whitelist[from];
            if (!wlf) {
                uint256 tokens_to_burn = (fromBalance / tokensPerNFT) - ((fromBalance - value) / tokensPerNFT);
                if(tokens_to_burn > 0)
                    _burnBatch(from, tokens_to_burn);
            }

            // Skip minting for certain addresses to save gas
            if (!whitelist[to]) {
                if(easyLaunch == 1 && wlf && from == owner()) {
                    //auto-initialize first (assumed) LP
                    whitelist[to] = true;
                    easyLaunch = 2;
                } else {
                    uint256 tokens_to_mint = ((toBalance + value) / tokensPerNFT) - (toBalance / tokensPerNFT);
                    if(tokens_to_mint > 0)
                        _mintWithoutCheck(to, tokens_to_mint);
                }
            }
        }
    }

    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC1155DelataQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) public view virtual returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            
            
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            
            // Set `stop = min(stop, stopLimit)`.
            uint256 stopLimit = _nextTokenId();
            if (stop > stopLimit) {
                stop = stopLimit;
            }

            uint256 tokenIdsLength;
            if(start < stop) {
                tokenIdsLength = balanceOf(owner, start, stop);
            } else {
                tokenIdsLength = 0;
            }
            
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);

            LibBitmap.Bitmap storage bmap = _owned[owner];
            
            for ((uint256 i, uint256 tokenIdsIdx) = (start, 0); tokenIdsIdx != tokenIdsLength; ++i) {
                if(bmap.get(i) ) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC1155DeltaQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) public view virtual returns (uint256[] memory) {
        if(_totalMinted() == 0) {
            return new uint256[](0);
        }
        return tokensOfOwnerIn(owner, _startTokenId(), _nextTokenId());
    }
}

contract Dawn is ERC404a {
    using Strings for uint256;
    string public dataURI;
    string public baseTokenURI;
    
    uint8 private constant _decimals = 18;
    uint256 private constant _totalTokens = 10000;
    uint256 private constant _tokensPerNFT = 1;
    string private constant _name = "Dawn";
    string private constant _ticker = "DAWN";

    // Reveal method instead of pre-determined, NFT owner decides when/if to reveal on-chain
    bool private _revealMode = false;
    string public placeholderURI;
    mapping(uint256 => uint256) private _revealBlocks;
    mapping(uint256 => bytes32) private _revealSeeds;
    uint256 public singleReveal;
    bytes32 public singleRevealed;

    // Snipe reduction tools
    uint256 public maxWallet;
    bool public transferDelay = true;
    mapping (address => uint256) private delayTimer;

    constructor() ERC404a("", _name, _ticker, _decimals, _totalTokens, _tokensPerNFT) {
        placeholderURI = "https://dawn404.com/wp-content/uploads/2024/02/";
        maxWallet = (_totalTokens * 10 ** _decimals) * 2 / 100;
        whitelist[0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6] = true; //uniswap quoter
        whitelist[0xE592427A0AEce92De3Edee1F18E0157C05861564] = true; //uniswap swaprouter
        singleReveal = block.number + 2;
    }

    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids
    ) internal override {
        if(!whitelist[to]) {
            require(_balances[to] <= maxWallet, "Transfer exceeds maximum wallet");
            if (transferDelay) {
                require(delayTimer[tx.origin] < block.number,"Only one transfer per block allowed.");
                delayTimer[tx.origin] = block.number;

                require(address(to).code.length == 0, "Contract trading restricted at launch");
            }
        }
        
        
        super._afterTokenTransfer(operator, from, to, ids);
    }

    function toggleDelay() external onlyOwner {
        transferDelay = !transferDelay;
    }

    function setMaxWallet(uint256 percent) external onlyOwner {
        maxWallet = totalSupply * percent / 100;
    }

    function setDataURI(string memory _dataURI) public onlyOwner {
        dataURI = _dataURI;
    }

    function setTokenURI(string memory _tokenURI) public onlyOwner {
        baseTokenURI = _tokenURI;
    }

    function setPlaceholderURI(string memory _placeholderURI) public onlyOwner {
        placeholderURI = _placeholderURI;
    }

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

    function tokenURI(uint256 id) public view returns (string memory) {
        if(id >= _nextTokenId()) revert InputLengthMistmatch();

        if (bytes(super.uri(id)).length > 0)
            return super.uri(id);
        if (bytes(baseTokenURI).length > 0)
            return string(abi.encodePacked(baseTokenURI, id.toString()));
        else {
            uint8 seed;
            bytes32 rs;
            
            if(_revealMode) { 
                rs = _revealSeeds[id];
                if(rs == 0){
                    seed = uint8(bytes1(keccak256(abi.encodePacked(singleRevealed, id))));
                } else
                    seed = uint8(bytes1(rs));
            }
            else {
                seed = uint8(bytes1(keccak256(abi.encodePacked(id))));
            }

                string memory color;
                string memory description = "A new dawn for 404 - the most gas efficient ERC 404, the first industry standard 10,000 3D rendered NFT supply collection.";

                if ((!_revealMode && bytes(placeholderURI).length > 0) || (_revealMode && rs == 0 && singleReveal == 0))
                    color = "4-3-vid";
                else if (seed <= 5) {
                    color = "Diamond";
                } else if (seed <= 17) {
                    color = "Gold";
                } else if (seed <= 32) {
                    color = "Red";
                } else if (seed <= 52) {
                    color = "Blue";
                } else if (seed <= 75) {
                    color = "Pink";
                } else if (seed <= 100) {
                    color = "Orange";
                } else if (seed <= 126) {
                    color = "Green";
                } else if (seed <= 156) {
                    color = "Yellow";
                } else if (seed <= 199) {
                    color = "White";
                } else if (seed <= 255) {
                    color = "Purple";
                }

                string memory imgURL;
                if (bytes(placeholderURI).length > 0 )
                    imgURL = placeholderURI;
                else
                    imgURL = dataURI;

                string memory jsonPreImage = string(abi.encodePacked('{"name": "', color,' Dawn #', id.toString(), '","description":"', description, '","external_url":"https://dawn404.com","image":"', imgURL, color, '.jpg", "animation_url":"', imgURL, color, '.mp4'));
                return string(abi.encodePacked("data:application/json;utf8,", jsonPreImage, '","attributes":[{"trait_type":"Color","value":"', color, '"}]}'));
            
        }
    }

    function prepReveal(uint256 id) external {
        require(_revealMode, "No need to run");
        require(isOwnerOf(msg.sender, id), "Must own NFT");
        require(_revealBlocks[id] == 0 || (block.number - _revealBlocks[id] > 250 && _revealSeeds[id] == 0), "Already revealed");

        _revealBlocks[id] = block.number + 2;
    }

    function reveal(uint256 id) external {
        uint256 rb = _revealBlocks[id];
        require(_revealMode, "No need to run");
        require(isOwnerOf(msg.sender, id), "Must own NFT");
        require(rb > 0 && block.number > rb, "Not ready");
        require(_revealSeeds[id] == 0, "Already revealed");

        _revealSeeds[id] = keccak256(abi.encodePacked(blockhash(rb-1), rb, blockhash(rb-2), id));
    }

    function singlePrep() external onlyOwner {
        require(singleReveal == 0 || (block.number - singleReveal > 250 && singleRevealed == 0), "Already revealed");
        singleReveal = block.number + 2;
    }

    function singleFinal() external onlyOwner {
        require(singleReveal > 0 && block.number > singleReveal, "Not ready");
        singleRevealed = keccak256(abi.encodePacked(blockhash(singleReveal-1), singleReveal, blockhash(singleReveal-2)));
    }

    function uri(uint256 id) public view override returns (string memory) {
        return tokenURI(id);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"BurnFromNonOnwerAddress","type":"error"},{"inputs":[],"name":"BurnFromZeroAddress","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"InputLengthMistmatch","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwnerOrInvalidAmount","type":"error"},{"inputs":[],"name":"TransferToNonERC1155ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimalFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"easyLaunch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"prepReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_dataURI","type":"string"}],"name":"setDataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderURI","type":"string"}],"name":"setPlaceholderURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"singleFinal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"singlePrep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"singleReveal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"singleRevealed","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"name":"toggleDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensPerNFT","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelay","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6101006040526001600c819055600f805460ff1990811690915560168054909116909117905534801562000031575f80fd5b5060408051602080820183525f8252825180840184526004808252632230bbb760e11b8284015284518086019095528452632220aba760e11b918401919091529091601261271060013380620000a057604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b620000ab8162000268565b50620000b786620002b7565b60016005556009620000ca868262000367565b50600a620000d9858262000367565b5060ff83166080819052620000f090600a62000542565b60c081905262000101908262000559565b60e05260c05162000113908362000559565b60a0819052335f818152600b60209081526040808320805460ff191660011790556007825280832085905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050506040518060600160405280602f815260200162005364602f9139601090620001a0908262000367565b506064620001b16012600a62000542565b620001bf9061271062000559565b620001cc90600262000559565b620001d8919062000573565b601555600b6020527f1604174ebc462c8eaf2ec7e83589cabf07a8c461522803c7fe8839a32124f16e8054600160ff19918216811790925573e592427a0aece92de3edee1f18e0157c058615645f527fb459ce5f85b1a41edca5b0333ee7cae62cf7e4c746bcaa3ff18b68ddc51f8101805490911690911790556200025f43600262000593565b601355620005a9565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6004620002c5828262000367565b5050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002f257607f821691505b6020821081036200031157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200036257805f5260205f20601f840160051c810160208510156200033e5750805b601f840160051c820191505b818110156200035f575f81556001016200034a565b50505b505050565b81516001600160401b03811115620003835762000383620002c9565b6200039b81620003948454620002dd565b8462000317565b602080601f831160018114620003d1575f8415620003b95750858301515b5f19600386901b1c1916600185901b1785556200042b565b5f85815260208120601f198616915b828110156200040157888601518255948401946001909101908401620003e0565b50858210156200041f57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200048757815f19048211156200046b576200046b62000433565b808516156200047957918102915b93841c93908002906200044c565b509250929050565b5f826200049f575060016200053c565b81620004ad57505f6200053c565b8160018114620004c65760028114620004d157620004f1565b60019150506200053c565b60ff841115620004e557620004e562000433565b50506001821b6200053c565b5060208310610133831016604e8410600b841016171562000516575081810a6200053c565b62000522838362000447565b805f190482111562000538576200053862000433565b0290505b92915050565b5f6200055260ff8416836200048f565b9392505050565b80820281158282048414176200053c576200053c62000433565b5f826200058e57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200053c576200053c62000433565b60805160a05160c05160e051614d4f620006155f395f818161051901528181610e33015281816121880152818161279001528181612eaf01528181612ee701528181612fec015261301301525f61055301525f818161041f015261112f01525f6104920152614d4f5ff3fe608060405234801561000f575f80fd5b506004361061030e575f3560e01c80637313cba91161019d578063c5b8f772116100e8578063e985e9c511610093578063f28ca1dd1161006e578063f28ca1dd14610777578063f2fde38b1461077f578063f8b45b0514610792575f80fd5b8063e985e9c514610713578063ed5c981c1461075b578063f242432a14610764575f80fd5b8063d84fcb03116100c3578063d84fcb03146106b2578063dd62ed3e146106bb578063e0df5b6f14610700575f80fd5b8063c5b8f77214610684578063c87b56dd14610697578063d547cfb7146106aa575f80fd5b8063a014e6e211610148578063c07074a611610123578063c07074a614610656578063c2ca0ac51461065e578063c3dc8bb314610671575f80fd5b8063a014e6e214610627578063a22cb46514610630578063a9059cbb14610643575f80fd5b806395d89b411161017857806395d89b41146105ea57806399a2557a146105f25780639b19251a14610605575f80fd5b80637313cba9146105b25780638462151c146105ba5780638da5cb5b146105cd575f80fd5b80632d760d571161025d57806353d6fd59116102085780636d6a6a4d116101e35780636d6a6a4d1461054e57806370a0823114610575578063715018a6146105aa575f80fd5b806353d6fd59146105015780635afcc2f5146105145780635d0044ca1461053b575f80fd5b80633574a2dd116102385780633574a2dd146104c65780634e1273f4146104d95780634eabf2c6146104f9575f80fd5b80632d760d57146104675780632eb2c2d61461047a578063313ce5671461048d575f80fd5b80630a702e8d116102bd57806318160ddd1161029857806318160ddd1461041a57806318d217c31461044157806323b872dd14610454575f80fd5b80630a702e8d146103f25780630d0c8d69146103ff5780630e89341c14610407575f80fd5b806306fdde03116102ed57806306fdde0314610370578063081812fc14610385578063095ea7b3146103df575f80fd5b8062fdd58e1461031257806301ffc9a71461033857806302fe53051461035b575b5f80fd5b610325610320366004613eb9565b61079b565b6040519081526020015b60405180910390f35b61034b610346366004613f0e565b61083a565b604051901515815260200161032f565b61036e61036936600461401a565b610a00565b005b610378610a14565b60405161032f91906140ca565b6103ba6103933660046140dc565b60066020525f908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161032f565b61034b6103ed366004613eb9565b610aa0565b60165461034b9060ff1681565b61036e610bbb565b6103786104153660046140dc565b610cb1565b6103257f000000000000000000000000000000000000000000000000000000000000000081565b61036e61044f36600461401a565b610cbc565b61034b6104623660046140f3565b610cd4565b61032561047536600461412c565b610ec7565b61036e610488366004614210565b610f09565b6104b47f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161032f565b61036e6104d436600461401a565b610f7c565b6104ec6104e73660046142b3565b610f90565b60405161032f91906143b2565b61036e611088565b61036e61050f3660046143d1565b6110c2565b6103257f000000000000000000000000000000000000000000000000000000000000000081565b61036e6105493660046140dc565b61111f565b6103257f000000000000000000000000000000000000000000000000000000000000000081565b610325610583366004614406565b73ffffffffffffffffffffffffffffffffffffffff165f9081526007602052604090205490565b61036e611163565b610378611176565b6104ec6105c8366004614406565b611183565b5f5473ffffffffffffffffffffffffffffffffffffffff166103ba565b6103786111b4565b6104ec61060036600461412c565b6111c1565b61034b610613366004614406565b600b6020525f908152604090205460ff1681565b610325600c5481565b61036e61063e3660046143d1565b611314565b61034b610651366004613eb9565b61131f565b61036e61132e565b61036e61066c3660046140dc565b6113d3565b61036e61067f3660046140dc565b611629565b61034b610692366004613eb9565b6117cf565b6103786106a53660046140dc565b611811565b610378611e54565b61032560145481565b6103256106c936600461441f565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260086020908152604080832093909416825291909152205490565b61036e61070e36600461401a565b611e61565b61034b61072136600461441f565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260036020908152604080832093909416825291909152205460ff1690565b61032560135481565b61036e610772366004614450565b611e75565b610378611ee9565b61036e61078d366004614406565b611ef6565b61032560155481565b5f73ffffffffffffffffffffffffffffffffffffffff83166107e9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83165f908152600160208181526040808420600887901c85529091529091205460ff84161c161561083157506001610834565b505f5b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a260000000000000000000000000000000000000000000000000000000014806108cc57507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061091857507fffffffff0000000000000000000000000000000000000000000000000000000082167fc5b8f77200000000000000000000000000000000000000000000000000000000145b8061096457507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806109b057507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061083457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610834565b610a08611f56565b610a1181611fa8565b50565b60098054610a21906144b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4d906144b0565b8015610a985780601f10610a6f57610100808354040283529160200191610a98565b820191905f5260205f20905b815481529060010190602001808311610a7b57829003601f168201915b505050505081565b5f33610aab60055490565b83108015610ab857505f83115b15610ba657610ac781846117cf565b610b1a576040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024015b60405180910390fd5b5f8381526006602090815260409182902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3610bb1565b610bb1818585611fb4565b5060019392505050565b610bc3611f56565b5f601354118015610bd5575060135443115b610c3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e6f7420726561647900000000000000000000000000000000000000000000006044820152606401610b11565b6001601354610c4a919061452e565b601354904090610c5b60028261452e565b604080516020810194909452830191909152406060820152608001604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190528051602090910120601455565b606061083482611811565b610cc4611f56565b600d610cd08282614585565b5050565b5f610cde60055490565b821015610eaf5773ffffffffffffffffffffffffffffffffffffffff84165f908152600160208181526040808420600887901c85529091529091205460ff84161c16610d6e576040517f94280d6200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602401610b11565b3373ffffffffffffffffffffffffffffffffffffffff851614801590610dc4575073ffffffffffffffffffffffffffffffffffffffff84165f90815260036020908152604080832033845290915290205460ff16155b8015610df357505f8281526006602052604090205473ffffffffffffffffffffffffffffffffffffffff163314155b15610e2c576040517f94280d62000000000000000000000000000000000000000000000000000000008152336004820152602401610b11565b610e5884847f00000000000000000000000000000000000000000000000000000000000000005f611fc6565b5f82815260066020908152604080832080547fffffffffffffffffffffffff000000000000000000000000000000000000000016905580519182019052818152610eaa91869186918691600191612076565b610bb1565b610eba843384612252565b610bb18484846001611fc6565b5f610f0183610ed6818561452e565b73ffffffffffffffffffffffffffffffffffffffff87165f9081526001602052604090209190612319565b949350505050565b73ffffffffffffffffffffffffffffffffffffffff8516331480610f325750610f328533610721565b610f68576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f758585858585612602565b5050505050565b610f84611f56565b6010610cd08282614585565b60608151835114610fcd576040517f7801f4e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f835167ffffffffffffffff811115610fe857610fe8613f29565b604051908082528060200260200182016040528015611011578160200160208202803683370190505b5090505f5b84518110156110805761105b8582815181106110345761103461469d565b602002602001015185838151811061104e5761104e61469d565b602002602001015161079b565b82828151811061106d5761106d61469d565b6020908102919091010152600101611016565b509392505050565b611090611f56565b601680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b6110ca611f56565b73ffffffffffffffffffffffffffffffffffffffff919091165f908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611127611f56565b6064611153827f00000000000000000000000000000000000000000000000000000000000000006146ca565b61115d919061470e565b60155550565b61116b611f56565b6111745f612894565b565b60108054610a21906144b0565b606061118d612908565b5f036111a6575050604080515f81526020810190915290565b6108348260016005546111c1565b600a8054610a21906144b0565b60608183106111fc576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600183101561120a57600192505b5f61121460055490565b905080831115611222578092505b5f8385101561123d57611236868686610ec7565b9050611240565b505f5b5f8167ffffffffffffffff81111561125a5761125a613f29565b604051908082528060200260200182016040528015611283578160200160208202803683370190505b5073ffffffffffffffffffffffffffffffffffffffff88165f90815260016020526040812091925087905b84811461130657600882901c5f9081526020849052604090205460ff83161c600116156112fb57818482806001019350815181106112ee576112ee61469d565b6020026020010181815250505b8160010191506112ae565b509198975050505050505050565b610cd033838361291d565b5f33610bb18185856001611fc6565b611336611f56565b601354158061135d575060fa60135443611350919061452e565b11801561135d5750601454155b6113c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f416c72656164792072657665616c6564000000000000000000000000000000006044820152606401610b11565b6113ce436002614721565b601355565b5f81815260116020526040902054600f5460ff1661144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4e6f206e65656420746f2072756e0000000000000000000000000000000000006044820152606401610b11565b61145733836117cf565b6114bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4d757374206f776e204e465400000000000000000000000000000000000000006044820152606401610b11565b5f811180156114cb57508043115b611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e6f7420726561647900000000000000000000000000000000000000000000006044820152606401610b11565b5f82815260126020526040902054156115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f416c72656164792072657665616c6564000000000000000000000000000000006044820152606401610b11565b6115b160018261452e565b40816115be60028261452e565b6040805160208101949094528301919091524060608201526080810183905260a001604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291815281516020928301205f94855260129092529092209190915550565b600f5460ff16611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4e6f206e65656420746f2072756e0000000000000000000000000000000000006044820152606401610b11565b61169f33826117cf565b611705576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4d757374206f776e204e465400000000000000000000000000000000000000006044820152606401610b11565b5f81815260116020526040902054158061174d57505f8181526011602052604090205460fa90611735904361452e565b11801561174d57505f81815260126020526040902054155b6117b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f416c72656164792072657665616c6564000000000000000000000000000000006044820152606401610b11565b6117be436002614721565b5f9182526011602052604090912055565b73ffffffffffffffffffffffffffffffffffffffff82165f908152600160208181526040808420600886901c855290915282205460ff84161c165b9392505050565b606061181c60055490565b8210611854576040517f7801f4e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61185e83612a6f565b51111561186e5761083482612a6f565b5f600e805461187c906144b0565b905011156118b657600e61188f83612b01565b6040516020016118a092919061474f565b6040516020818303038152906040529050919050565b600f545f90819060ff161561191e57505f83815260126020526040812054908190036119135760145460408051602081019290925281018590526060016040516020818303038152906040528051906020012060f81c9150611946565b8060f81c9150611946565b6040805160208101869052016040516020818303038152906040528051906020012060f81c91505b60605f6040518060a00160405280607a8152602001614ca0607a9139600f5490915060ff1615801561198557505f60108054611981906144b0565b9050115b806119a75750600f5460ff16801561199b575082155b80156119a75750601354155b156119e9576040518060400160405280600781526020017f342d332d766964000000000000000000000000000000000000000000000000008152509150611cb5565b60058460ff1611611a31576040518060400160405280600781526020017f4469616d6f6e64000000000000000000000000000000000000000000000000008152509150611cb5565b60118460ff1611611a79576040518060400160405280600481526020017f476f6c64000000000000000000000000000000000000000000000000000000008152509150611cb5565b60208460ff1611611ac1576040518060400160405280600381526020017f52656400000000000000000000000000000000000000000000000000000000008152509150611cb5565b60348460ff1611611b09576040518060400160405280600481526020017f426c7565000000000000000000000000000000000000000000000000000000008152509150611cb5565b604b8460ff1611611b51576040518060400160405280600481526020017f50696e6b000000000000000000000000000000000000000000000000000000008152509150611cb5565b60648460ff1611611b99576040518060400160405280600681526020017f4f72616e676500000000000000000000000000000000000000000000000000008152509150611cb5565b607e8460ff1611611be1576040518060400160405280600581526020017f477265656e0000000000000000000000000000000000000000000000000000008152509150611cb5565b609c8460ff1611611c29576040518060400160405280600681526020017f59656c6c6f7700000000000000000000000000000000000000000000000000008152509150611cb5565b60c78460ff1611611c71576040518060400160405280600581526020017f57686974650000000000000000000000000000000000000000000000000000008152509150611cb5565b60ff8460ff1611611cb5576040518060400160405280600681526020017f507572706c65000000000000000000000000000000000000000000000000000081525091505b60605f60108054611cc5906144b0565b90501115611d5d5760108054611cda906144b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611d06906144b0565b8015611d515780601f10611d2857610100808354040283529160200191611d51565b820191905f5260205f20905b815481529060010190602001808311611d3457829003601f168201915b50505050509050611de9565b600d8054611d6a906144b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611d96906144b0565b8015611de15780601f10611db857610100808354040283529160200191611de1565b820191905f5260205f20905b815481529060010190602001808311611dc457829003601f168201915b505050505090505b5f83611df489612b01565b8484878689604051602001611e0f97969594939291906147f0565b60405160208183030381529060405290508084604051602001611e3392919061498e565b6040516020818303038152906040529650505050505050919050565b919050565b600e8054610a21906144b0565b611e69611f56565b600e610cd08282614585565b73ffffffffffffffffffffffffffffffffffffffff8516331480611e9e5750611e9e8533610721565b15611eb757611eb285858585856001612076565b610f75565b6040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d8054610a21906144b0565b611efe611f56565b73ffffffffffffffffffffffffffffffffffffffff8116611f4d576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152602401610b11565b610a1181612894565b5f5473ffffffffffffffffffffffffffffffffffffffff163314611174576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610b11565b6004610cd08282614585565b611fc18383836001612c32565b505050565b73ffffffffffffffffffffffffffffffffffffffff8416612015576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401610b11565b73ffffffffffffffffffffffffffffffffffffffff8316612064576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401610b11565b61207084848484612d77565b50505050565b73ffffffffffffffffffffffffffffffffffffffff85166120c3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b335f6120ce8661306e565b9050846001148015612117575073ffffffffffffffffffffffffffffffffffffffff88165f90815260016020818152604080842060088b901c85529091529091205460ff88161c165b156121b25773ffffffffffffffffffffffffffffffffffffffff8881165f90815260016020818152604080842060088c901c808652908352818520805460ff8e1686901b8019909116909155958d168552928252808420928452919052812080549092179091556121ad90899089907f000000000000000000000000000000000000000000000000000000000000000090611fc6565b6121e4565b6040517f37dbad3d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8781169089168682827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4612232848b8b866130b4565b841561224657612246848b8b8b8b8b6132d2565b50505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600860209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612070578181101561230b576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841660048201526024810182905260448101839052606401610b11565b61207084848484035f612c32565b5f600883901c60ff841661010184820110612511575f828152602087905260409020547f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f7f555555555555555555555555555555555555555555555555555555555555555591831c600181901c929092168203600281901c7f3333333333333333333333333333333333333333333333333333333333333333908116911601600481901c01167f01010101010101010101010101010101010101010101010101010101010101010260f81c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911460081b17930160ff811693925060018201915f9160081c015b80831461250f575f838152602088905260409020547f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f7f5555555555555555555555555555555555555555555555555555555555555555600183901c168203600281901c7f3333333333333333333333333333333333333333333333333333333333333333908116911601600481901c01167f01010101010101010101010101010101010101010101010101010101010101010260f81c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911460081b1784019350826001019250612421565b505b5f828152602087905260409020547f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f7f555555555555555555555555555555555555555555555555555555555555555591831c6101008790031b600181901c929092168203600281901c7f3333333333333333333333333333333333333333333333333333333333333333908116911601600481901c01167f01010101010101010101010101010101010101010101010101010101010101010260f81c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911460081b1790920195945050505050565b815183511461263d576040517f7801f4e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff841661268a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b335f5b8451811015612786575f8582815181106126a9576126a961469d565b602002602001015190505f8583815181106126c6576126c661469d565b60200260200101519050806001148015612717575073ffffffffffffffffffffffffffffffffffffffff89165f908152600160208181526040808420600887901c85529091529091205460ff84161c165b156121b2575073ffffffffffffffffffffffffffffffffffffffff8881165f908152600160208181526040808420600887901c808652908352818520805460ff90981685901b80199098169055948c16845282825280842094845293905291902080549092179091550161268d565b506127bf868686517f00000000000000000000000000000000000000000000000000000000000000006127b991906146ca565b5f611fc6565b5f805f865160016127d09190614721565b905073ffffffffffffffffffffffffffffffffffffffff8916915073ffffffffffffffffffffffffffffffffffffffff88169250602087015183837fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460025b81811461286e578060200288015184847fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600101612832565b5061287b848a8a8a6130b4565b612889848a8a8a8a8a6136f0565b505050505050505050565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6001600554612918919061452e565b905090565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610b11565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526003602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b606060048054612a7e906144b0565b80601f0160208091040260200160405190810160405280929190818152602001828054612aaa906144b0565b8015612af55780601f10612acc57610100808354040283529160200191612af5565b820191905f5260205f20905b815481529060010190602001808311612ad857829003601f168201915b50505050509050919050565b6060815f03612b4357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b815f5b8115612b6c5780612b5681614a5e565b9150612b659050600a8361470e565b9150612b46565b5f8167ffffffffffffffff811115612b8657612b86613f29565b6040519080825280601f01601f191660200182016040528015612bb0576020820181803683370190505b5090505b8415610f0157612bc560018361452e565b9150612bd2600a86614a95565b612bdd906030614721565b60f81b818381518110612bf257612bf261469d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350612c2b600a8661470e565b9450612bb4565b73ffffffffffffffffffffffffffffffffffffffff8416612c81576040517fe602df050000000000000000000000000000000000000000000000000000000081525f6004820152602401610b11565b73ffffffffffffffffffffffffffffffffffffffff8316612cd0576040517f94280d620000000000000000000000000000000000000000000000000000000081525f6004820152602401610b11565b73ffffffffffffffffffffffffffffffffffffffff8085165f9081526008602090815260408083209387168352929052208290558015612070578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051612d6991815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8085165f9081526007602052604080822054928616825290205483821015612e06576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201526024810183905260448101859052606401610b11565b73ffffffffffffffffffffffffffffffffffffffff8087165f81815260076020526040808220888703905592881680825290839020848801905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612e719088815260200190565b60405180910390a382156130665773ffffffffffffffffffffffffffffffffffffffff86165f908152600b602052604090205460ff1680612f2a575f7f0000000000000000000000000000000000000000000000000000000000000000612ed8878661452e565b612ee2919061470e565b612f0c7f00000000000000000000000000000000000000000000000000000000000000008661470e565b612f16919061452e565b90508015612f2857612f288882613846565b505b73ffffffffffffffffffffffffffffffffffffffff86165f908152600b602052604090205460ff1661306457600c546001148015612f655750805b8015612f8a57505f5473ffffffffffffffffffffffffffffffffffffffff8881169116145b15612fe65773ffffffffffffffffffffffffffffffffffffffff86165f908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556002600c55613064565b5f6130117f00000000000000000000000000000000000000000000000000000000000000008461470e565b7f000000000000000000000000000000000000000000000000000000000000000061303c8886614721565b613046919061470e565b613050919061452e565b90508015613062576122468782613a8b565b505b505b505050505050565b6040805160018082528183019092526060916020808301908036833701905050905081815f815181106130a3576130a361469d565b602002602001018181525050919050565b73ffffffffffffffffffffffffffffffffffffffff82165f908152600b602052604090205460ff166132cd5760155473ffffffffffffffffffffffffffffffffffffffff83165f908152600760205260409020541115613170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5472616e736665722065786365656473206d6178696d756d2077616c6c6574006044820152606401610b11565b60165460ff16156132cd57325f908152601760205260409020544311613217576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f60448201527f7765642e000000000000000000000000000000000000000000000000000000006064820152608401610b11565b325f90815260176020526040902043905573ffffffffffffffffffffffffffffffffffffffff82163b156132cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f436f6e74726163742074726164696e672072657374726963746564206174206c60448201527f61756e63680000000000000000000000000000000000000000000000000000006064820152608401610b11565b612070565b73ffffffffffffffffffffffffffffffffffffffff84163b15613066576040517f01ffc9a70000000000000000000000000000000000000000000000000000000081527fd9b67a2600000000000000000000000000000000000000000000000000000000600482015273ffffffffffffffffffffffffffffffffffffffff8516906301ffc9a790602401602060405180830381865afa158015613377573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061339b9190614aa8565b15613566576040517ff23a6e6100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063f23a6e61906133fa9089908990889088908890600401614ac3565b6020604051808303815f875af1925050508015613452575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261344f91810190614b12565b60015b6134e55761345e614b2d565b806308c379a0036134b15750613472614b46565b8061347d57506134b3565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1191906140ca565b505b6040517f9c05499b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014613560576040517f9c05499b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50613066565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906135be908990899088908790600401614bed565b6020604051808303815f875af1925050508015613616575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261361391810190614b12565b60015b61367557613622614b2d565b806308c379a0036136415750613636614b46565b8061347d5750613643565b505b6040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081167f150b7a020000000000000000000000000000000000000000000000000000000014613064576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff84163b15613066576040517fbc197c8100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063bc197c81906137679089908990889088908890600401614c35565b6020604051808303815f875af19250505080156137bf575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526137bc91810190614b12565b60015b6137cb5761345e614b2d565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014613064576040517f9c05499b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216613893576040517fb817eee700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055433905f8367ffffffffffffffff8111156138b2576138b2613f29565b6040519080825280602002602001820160405280156138db578160200160208202803683370190505b5090505f8467ffffffffffffffff8111156138f8576138f8613f29565b604051908082528060200260200182016040528015613921578160200160208202803683370190505b5090505f5b858110156139eb5760018382815181106139425761394261469d565b60209081029190910181019190915273ffffffffffffffffffffffffffffffffffffffff88165f90815260019091526040812061397f9086613d13565b9050808383815181106139945761399461469d565b60209081029190910181019190915273ffffffffffffffffffffffffffffffffffffffff89165f90815260018083526040808320600886901c8452909352919020805460ff841683901b1916905590945001613926565b505f806139f9876001614721565b905073ffffffffffffffffffffffffffffffffffffffff8816915060208301515f837fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460025b818114613a7e57806020028401515f847fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600101613a42565b5061306286895f866130b4565b60608073ffffffffffffffffffffffffffffffffffffffff8416613adb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b825f03613b14576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b338367ffffffffffffffff811115613b2e57613b2e613f29565b604051908082528060200260200182016040528015613b57578160200160208202803683370190505b5092508367ffffffffffffffff811115613b7357613b73613f29565b604051908082528060200260200182016040528015613b9c578160200160208202803683370190505b5091505f613ba960055490565b905080857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff031015613bd9575f80fd5b5f5b85811015613c2b57808201858281518110613bf857613bf861469d565b6020026020010181815250506001848281518110613c1857613c1861469d565b6020908102919091010152600101613bdb565b5073ffffffffffffffffffffffffffffffffffffffff86165f908152600160205260409020613c5b908287613e20565b8460055f828254613c6c9190614721565b909155505f905080613c7e8784614721565b905073ffffffffffffffffffffffffffffffffffffffff8816915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114613cfb5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600101613cc5565b50613d08845f8a896130b4565b505050509250929050565b600881901c5f818152602084905260409020547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff919060ff84191690811b901c81158117613d72575b5081015f81815260409020548115811715613d5c575b8015613e1857613e09817f0706060506020504060203020504030106050205030304010505030400000000601f6f8421084210842108cc6318c6db6d54be831560081b6fffffffffffffffffffffffffffffffff851160071b1784811c67ffffffffffffffff1060061b1784811c63ffffffff1060051b1784811c61ffff1060041b1784811c60ff1060031b1793841c1c161a1790565b600883901b178481115f031792505b505092915050565b5f1960ff8316846020528360081c5f5261010183820110613e7c575f805160408220805485851b1790559390910160ff811693600181019160081c015b808214613e7857815f528360405f2055600182019150613e5d565b505f525b60405f208284610100031c821b8154178155505050505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611e4f575f80fd5b5f8060408385031215613eca575f80fd5b613ed383613e96565b946020939093013593505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a11575f80fd5b5f60208284031215613f1e575f80fd5b813561180a81613ee1565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff82111715613f9a57613f9a613f29565b6040525050565b5f67ffffffffffffffff831115613fba57613fba613f29565b604051613fef60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8701160182613f56565b809150838152848484011115614003575f80fd5b838360208301375f60208583010152509392505050565b5f6020828403121561402a575f80fd5b813567ffffffffffffffff811115614040575f80fd5b8201601f81018413614050575f80fd5b610f0184823560208401613fa1565b5f5b83811015614079578181015183820152602001614061565b50505f910152565b5f815180845261409881602086016020860161405f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081525f61180a6020830184614081565b5f602082840312156140ec575f80fd5b5035919050565b5f805f60608486031215614105575f80fd5b61410e84613e96565b925061411c60208501613e96565b9150604084013590509250925092565b5f805f6060848603121561413e575f80fd5b61414784613e96565b95602085013595506040909401359392505050565b5f67ffffffffffffffff82111561417557614175613f29565b5060051b60200190565b5f82601f83011261418e575f80fd5b8135602061419b8261415c565b6040516141a88282613f56565b80915083815260208101915060208460051b8701019350868411156141cb575f80fd5b602086015b848110156141e757803583529183019183016141d0565b509695505050505050565b5f82601f830112614201575f80fd5b61180a83833560208501613fa1565b5f805f805f60a08688031215614224575f80fd5b61422d86613e96565b945061423b60208701613e96565b9350604086013567ffffffffffffffff80821115614257575f80fd5b61426389838a0161417f565b94506060880135915080821115614278575f80fd5b61428489838a0161417f565b93506080880135915080821115614299575f80fd5b506142a6888289016141f2565b9150509295509295909350565b5f80604083850312156142c4575f80fd5b823567ffffffffffffffff808211156142db575f80fd5b818501915085601f8301126142ee575f80fd5b813560206142fb8261415c565b6040516143088282613f56565b83815260059390931b8501820192828101915089841115614327575f80fd5b948201945b8386101561434c5761433d86613e96565b8252948201949082019061432c565b96505086013592505080821115614361575f80fd5b5061436e8582860161417f565b9150509250929050565b5f815180845260208085019450602084015f5b838110156143a75781518752958201959082019060010161438b565b509495945050505050565b602081525f61180a6020830184614378565b8015158114610a11575f80fd5b5f80604083850312156143e2575f80fd5b6143eb83613e96565b915060208301356143fb816143c4565b809150509250929050565b5f60208284031215614416575f80fd5b61180a82613e96565b5f8060408385031215614430575f80fd5b61443983613e96565b915061444760208401613e96565b90509250929050565b5f805f805f60a08688031215614464575f80fd5b61446d86613e96565b945061447b60208701613e96565b93506040860135925060608601359150608086013567ffffffffffffffff8111156144a4575f80fd5b6142a6888289016141f2565b600181811c908216806144c457607f821691505b6020821081036144fb577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8181038181111561083457610834614501565b601f821115611fc157805f5260205f20601f840160051c810160208510156145665750805b601f840160051c820191505b81811015610f75575f8155600101614572565b815167ffffffffffffffff81111561459f5761459f613f29565b6145b3816145ad84546144b0565b84614541565b602080601f831160018114614605575f84156145cf5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555613066565b5f858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b8281101561465157888601518255948401946001909101908401614632565b508582101561468d57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b808202811582820484141761083457610834614501565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f8261471c5761471c6146e1565b500490565b8082018082111561083457610834614501565b5f815161474581856020860161405f565b9290920192915050565b5f80845461475c816144b0565b6001828116801561477457600181146147a7576147d3565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528215158302870194506147d3565b885f526020805f205f5b858110156147ca5781548a8201529084019082016147b1565b50505082870194505b5050505083516147e781836020880161405f565b01949350505050565b7f7b226e616d65223a20220000000000000000000000000000000000000000000081525f885161482781600a850160208d0161405f565b7f204461776e202300000000000000000000000000000000000000000000000000600a918401918201528851614864816011840160208d0161405f565b7f222c226465736372697074696f6e223a220000000000000000000000000000006011929091019182015287516148a2816022840160208c0161405f565b7f222c2265787465726e616c5f75726c223a2268747470733a2f2f6461776e3430602292909101918201527f342e636f6d222c22696d616765223a220000000000000000000000000000000060428201528651614906816052840160208b0161405f565b61497f61495661495061494a6149216052868801018c614734565b7f2e6a7067222c2022616e696d6174696f6e5f75726c223a220000000000000000815260180190565b89614734565b87614734565b7f2e6d703400000000000000000000000000000000000000000000000000000000815260040190565b9b9a5050505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c000000000081525f83516149c581601b85016020880161405f565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a2243601b918401918201527f6f6c6f72222c2276616c7565223a220000000000000000000000000000000000603b8201528351614a2881604a84016020880161405f565b7f227d5d7d00000000000000000000000000000000000000000000000000000000604a9290910191820152604e01949350505050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614a8e57614a8e614501565b5060010190565b5f82614aa357614aa36146e1565b500690565b5f60208284031215614ab8575f80fd5b815161180a816143c4565b5f73ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a06080830152614b0760a0830184614081565b979650505050505050565b5f60208284031215614b22575f80fd5b815161180a81613ee1565b5f60033d1115614b435760045f803e505f5160e01c5b90565b5f60443d1015614b535790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715614ba157505050505090565b8285019150815181811115614bb95750505050505090565b843d8701016020828501011115614bd35750505050505090565b614be260208286010187613f56565b509095945050505050565b5f73ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152614c2b6080830184614081565b9695505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a06040830152614c6d60a0830186614378565b8281036060840152614c7f8186614378565b90508281036080840152614c938185614081565b9897505050505050505056fe41206e6577206461776e20666f7220343034202d20746865206d6f73742067617320656666696369656e7420455243203430342c2074686520666972737420696e647573747279207374616e646172642031302c3030302033442072656e6465726564204e465420737570706c7920636f6c6c656374696f6e2ea2646970667358221220b94f42dc29fe364b40075a68a153f524a00e47445e008571d0d1511a065bac8964736f6c6343000818003368747470733a2f2f6461776e3430342e636f6d2f77702d636f6e74656e742f75706c6f6164732f323032342f30322f

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061030e575f3560e01c80637313cba91161019d578063c5b8f772116100e8578063e985e9c511610093578063f28ca1dd1161006e578063f28ca1dd14610777578063f2fde38b1461077f578063f8b45b0514610792575f80fd5b8063e985e9c514610713578063ed5c981c1461075b578063f242432a14610764575f80fd5b8063d84fcb03116100c3578063d84fcb03146106b2578063dd62ed3e146106bb578063e0df5b6f14610700575f80fd5b8063c5b8f77214610684578063c87b56dd14610697578063d547cfb7146106aa575f80fd5b8063a014e6e211610148578063c07074a611610123578063c07074a614610656578063c2ca0ac51461065e578063c3dc8bb314610671575f80fd5b8063a014e6e214610627578063a22cb46514610630578063a9059cbb14610643575f80fd5b806395d89b411161017857806395d89b41146105ea57806399a2557a146105f25780639b19251a14610605575f80fd5b80637313cba9146105b25780638462151c146105ba5780638da5cb5b146105cd575f80fd5b80632d760d571161025d57806353d6fd59116102085780636d6a6a4d116101e35780636d6a6a4d1461054e57806370a0823114610575578063715018a6146105aa575f80fd5b806353d6fd59146105015780635afcc2f5146105145780635d0044ca1461053b575f80fd5b80633574a2dd116102385780633574a2dd146104c65780634e1273f4146104d95780634eabf2c6146104f9575f80fd5b80632d760d57146104675780632eb2c2d61461047a578063313ce5671461048d575f80fd5b80630a702e8d116102bd57806318160ddd1161029857806318160ddd1461041a57806318d217c31461044157806323b872dd14610454575f80fd5b80630a702e8d146103f25780630d0c8d69146103ff5780630e89341c14610407575f80fd5b806306fdde03116102ed57806306fdde0314610370578063081812fc14610385578063095ea7b3146103df575f80fd5b8062fdd58e1461031257806301ffc9a71461033857806302fe53051461035b575b5f80fd5b610325610320366004613eb9565b61079b565b6040519081526020015b60405180910390f35b61034b610346366004613f0e565b61083a565b604051901515815260200161032f565b61036e61036936600461401a565b610a00565b005b610378610a14565b60405161032f91906140ca565b6103ba6103933660046140dc565b60066020525f908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161032f565b61034b6103ed366004613eb9565b610aa0565b60165461034b9060ff1681565b61036e610bbb565b6103786104153660046140dc565b610cb1565b6103257f00000000000000000000000000000000000000000000021e19e0c9bab240000081565b61036e61044f36600461401a565b610cbc565b61034b6104623660046140f3565b610cd4565b61032561047536600461412c565b610ec7565b61036e610488366004614210565b610f09565b6104b47f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff909116815260200161032f565b61036e6104d436600461401a565b610f7c565b6104ec6104e73660046142b3565b610f90565b60405161032f91906143b2565b61036e611088565b61036e61050f3660046143d1565b6110c2565b6103257f0000000000000000000000000000000000000000000000000de0b6b3a764000081565b61036e6105493660046140dc565b61111f565b6103257f0000000000000000000000000000000000000000000000000de0b6b3a764000081565b610325610583366004614406565b73ffffffffffffffffffffffffffffffffffffffff165f9081526007602052604090205490565b61036e611163565b610378611176565b6104ec6105c8366004614406565b611183565b5f5473ffffffffffffffffffffffffffffffffffffffff166103ba565b6103786111b4565b6104ec61060036600461412c565b6111c1565b61034b610613366004614406565b600b6020525f908152604090205460ff1681565b610325600c5481565b61036e61063e3660046143d1565b611314565b61034b610651366004613eb9565b61131f565b61036e61132e565b61036e61066c3660046140dc565b6113d3565b61036e61067f3660046140dc565b611629565b61034b610692366004613eb9565b6117cf565b6103786106a53660046140dc565b611811565b610378611e54565b61032560145481565b6103256106c936600461441f565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260086020908152604080832093909416825291909152205490565b61036e61070e36600461401a565b611e61565b61034b61072136600461441f565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260036020908152604080832093909416825291909152205460ff1690565b61032560135481565b61036e610772366004614450565b611e75565b610378611ee9565b61036e61078d366004614406565b611ef6565b61032560155481565b5f73ffffffffffffffffffffffffffffffffffffffff83166107e9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83165f908152600160208181526040808420600887901c85529091529091205460ff84161c161561083157506001610834565b505f5b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a260000000000000000000000000000000000000000000000000000000014806108cc57507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061091857507fffffffff0000000000000000000000000000000000000000000000000000000082167fc5b8f77200000000000000000000000000000000000000000000000000000000145b8061096457507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806109b057507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061083457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610834565b610a08611f56565b610a1181611fa8565b50565b60098054610a21906144b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4d906144b0565b8015610a985780601f10610a6f57610100808354040283529160200191610a98565b820191905f5260205f20905b815481529060010190602001808311610a7b57829003601f168201915b505050505081565b5f33610aab60055490565b83108015610ab857505f83115b15610ba657610ac781846117cf565b610b1a576040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024015b60405180910390fd5b5f8381526006602090815260409182902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3610bb1565b610bb1818585611fb4565b5060019392505050565b610bc3611f56565b5f601354118015610bd5575060135443115b610c3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e6f7420726561647900000000000000000000000000000000000000000000006044820152606401610b11565b6001601354610c4a919061452e565b601354904090610c5b60028261452e565b604080516020810194909452830191909152406060820152608001604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190528051602090910120601455565b606061083482611811565b610cc4611f56565b600d610cd08282614585565b5050565b5f610cde60055490565b821015610eaf5773ffffffffffffffffffffffffffffffffffffffff84165f908152600160208181526040808420600887901c85529091529091205460ff84161c16610d6e576040517f94280d6200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602401610b11565b3373ffffffffffffffffffffffffffffffffffffffff851614801590610dc4575073ffffffffffffffffffffffffffffffffffffffff84165f90815260036020908152604080832033845290915290205460ff16155b8015610df357505f8281526006602052604090205473ffffffffffffffffffffffffffffffffffffffff163314155b15610e2c576040517f94280d62000000000000000000000000000000000000000000000000000000008152336004820152602401610b11565b610e5884847f0000000000000000000000000000000000000000000000000de0b6b3a76400005f611fc6565b5f82815260066020908152604080832080547fffffffffffffffffffffffff000000000000000000000000000000000000000016905580519182019052818152610eaa91869186918691600191612076565b610bb1565b610eba843384612252565b610bb18484846001611fc6565b5f610f0183610ed6818561452e565b73ffffffffffffffffffffffffffffffffffffffff87165f9081526001602052604090209190612319565b949350505050565b73ffffffffffffffffffffffffffffffffffffffff8516331480610f325750610f328533610721565b610f68576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f758585858585612602565b5050505050565b610f84611f56565b6010610cd08282614585565b60608151835114610fcd576040517f7801f4e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f835167ffffffffffffffff811115610fe857610fe8613f29565b604051908082528060200260200182016040528015611011578160200160208202803683370190505b5090505f5b84518110156110805761105b8582815181106110345761103461469d565b602002602001015185838151811061104e5761104e61469d565b602002602001015161079b565b82828151811061106d5761106d61469d565b6020908102919091010152600101611016565b509392505050565b611090611f56565b601680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b6110ca611f56565b73ffffffffffffffffffffffffffffffffffffffff919091165f908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611127611f56565b6064611153827f00000000000000000000000000000000000000000000021e19e0c9bab24000006146ca565b61115d919061470e565b60155550565b61116b611f56565b6111745f612894565b565b60108054610a21906144b0565b606061118d612908565b5f036111a6575050604080515f81526020810190915290565b6108348260016005546111c1565b600a8054610a21906144b0565b60608183106111fc576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600183101561120a57600192505b5f61121460055490565b905080831115611222578092505b5f8385101561123d57611236868686610ec7565b9050611240565b505f5b5f8167ffffffffffffffff81111561125a5761125a613f29565b604051908082528060200260200182016040528015611283578160200160208202803683370190505b5073ffffffffffffffffffffffffffffffffffffffff88165f90815260016020526040812091925087905b84811461130657600882901c5f9081526020849052604090205460ff83161c600116156112fb57818482806001019350815181106112ee576112ee61469d565b6020026020010181815250505b8160010191506112ae565b509198975050505050505050565b610cd033838361291d565b5f33610bb18185856001611fc6565b611336611f56565b601354158061135d575060fa60135443611350919061452e565b11801561135d5750601454155b6113c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f416c72656164792072657665616c6564000000000000000000000000000000006044820152606401610b11565b6113ce436002614721565b601355565b5f81815260116020526040902054600f5460ff1661144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4e6f206e65656420746f2072756e0000000000000000000000000000000000006044820152606401610b11565b61145733836117cf565b6114bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4d757374206f776e204e465400000000000000000000000000000000000000006044820152606401610b11565b5f811180156114cb57508043115b611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e6f7420726561647900000000000000000000000000000000000000000000006044820152606401610b11565b5f82815260126020526040902054156115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f416c72656164792072657665616c6564000000000000000000000000000000006044820152606401610b11565b6115b160018261452e565b40816115be60028261452e565b6040805160208101949094528301919091524060608201526080810183905260a001604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291815281516020928301205f94855260129092529092209190915550565b600f5460ff16611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4e6f206e65656420746f2072756e0000000000000000000000000000000000006044820152606401610b11565b61169f33826117cf565b611705576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4d757374206f776e204e465400000000000000000000000000000000000000006044820152606401610b11565b5f81815260116020526040902054158061174d57505f8181526011602052604090205460fa90611735904361452e565b11801561174d57505f81815260126020526040902054155b6117b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f416c72656164792072657665616c6564000000000000000000000000000000006044820152606401610b11565b6117be436002614721565b5f9182526011602052604090912055565b73ffffffffffffffffffffffffffffffffffffffff82165f908152600160208181526040808420600886901c855290915282205460ff84161c165b9392505050565b606061181c60055490565b8210611854576040517f7801f4e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61185e83612a6f565b51111561186e5761083482612a6f565b5f600e805461187c906144b0565b905011156118b657600e61188f83612b01565b6040516020016118a092919061474f565b6040516020818303038152906040529050919050565b600f545f90819060ff161561191e57505f83815260126020526040812054908190036119135760145460408051602081019290925281018590526060016040516020818303038152906040528051906020012060f81c9150611946565b8060f81c9150611946565b6040805160208101869052016040516020818303038152906040528051906020012060f81c91505b60605f6040518060a00160405280607a8152602001614ca0607a9139600f5490915060ff1615801561198557505f60108054611981906144b0565b9050115b806119a75750600f5460ff16801561199b575082155b80156119a75750601354155b156119e9576040518060400160405280600781526020017f342d332d766964000000000000000000000000000000000000000000000000008152509150611cb5565b60058460ff1611611a31576040518060400160405280600781526020017f4469616d6f6e64000000000000000000000000000000000000000000000000008152509150611cb5565b60118460ff1611611a79576040518060400160405280600481526020017f476f6c64000000000000000000000000000000000000000000000000000000008152509150611cb5565b60208460ff1611611ac1576040518060400160405280600381526020017f52656400000000000000000000000000000000000000000000000000000000008152509150611cb5565b60348460ff1611611b09576040518060400160405280600481526020017f426c7565000000000000000000000000000000000000000000000000000000008152509150611cb5565b604b8460ff1611611b51576040518060400160405280600481526020017f50696e6b000000000000000000000000000000000000000000000000000000008152509150611cb5565b60648460ff1611611b99576040518060400160405280600681526020017f4f72616e676500000000000000000000000000000000000000000000000000008152509150611cb5565b607e8460ff1611611be1576040518060400160405280600581526020017f477265656e0000000000000000000000000000000000000000000000000000008152509150611cb5565b609c8460ff1611611c29576040518060400160405280600681526020017f59656c6c6f7700000000000000000000000000000000000000000000000000008152509150611cb5565b60c78460ff1611611c71576040518060400160405280600581526020017f57686974650000000000000000000000000000000000000000000000000000008152509150611cb5565b60ff8460ff1611611cb5576040518060400160405280600681526020017f507572706c65000000000000000000000000000000000000000000000000000081525091505b60605f60108054611cc5906144b0565b90501115611d5d5760108054611cda906144b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611d06906144b0565b8015611d515780601f10611d2857610100808354040283529160200191611d51565b820191905f5260205f20905b815481529060010190602001808311611d3457829003601f168201915b50505050509050611de9565b600d8054611d6a906144b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611d96906144b0565b8015611de15780601f10611db857610100808354040283529160200191611de1565b820191905f5260205f20905b815481529060010190602001808311611dc457829003601f168201915b505050505090505b5f83611df489612b01565b8484878689604051602001611e0f97969594939291906147f0565b60405160208183030381529060405290508084604051602001611e3392919061498e565b6040516020818303038152906040529650505050505050919050565b919050565b600e8054610a21906144b0565b611e69611f56565b600e610cd08282614585565b73ffffffffffffffffffffffffffffffffffffffff8516331480611e9e5750611e9e8533610721565b15611eb757611eb285858585856001612076565b610f75565b6040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d8054610a21906144b0565b611efe611f56565b73ffffffffffffffffffffffffffffffffffffffff8116611f4d576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152602401610b11565b610a1181612894565b5f5473ffffffffffffffffffffffffffffffffffffffff163314611174576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610b11565b6004610cd08282614585565b611fc18383836001612c32565b505050565b73ffffffffffffffffffffffffffffffffffffffff8416612015576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401610b11565b73ffffffffffffffffffffffffffffffffffffffff8316612064576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401610b11565b61207084848484612d77565b50505050565b73ffffffffffffffffffffffffffffffffffffffff85166120c3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b335f6120ce8661306e565b9050846001148015612117575073ffffffffffffffffffffffffffffffffffffffff88165f90815260016020818152604080842060088b901c85529091529091205460ff88161c165b156121b25773ffffffffffffffffffffffffffffffffffffffff8881165f90815260016020818152604080842060088c901c808652908352818520805460ff8e1686901b8019909116909155958d168552928252808420928452919052812080549092179091556121ad90899089907f0000000000000000000000000000000000000000000000000de0b6b3a764000090611fc6565b6121e4565b6040517f37dbad3d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8781169089168682827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4612232848b8b866130b4565b841561224657612246848b8b8b8b8b6132d2565b50505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600860209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612070578181101561230b576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841660048201526024810182905260448101839052606401610b11565b61207084848484035f612c32565b5f600883901c60ff841661010184820110612511575f828152602087905260409020547f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f7f555555555555555555555555555555555555555555555555555555555555555591831c600181901c929092168203600281901c7f3333333333333333333333333333333333333333333333333333333333333333908116911601600481901c01167f01010101010101010101010101010101010101010101010101010101010101010260f81c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911460081b17930160ff811693925060018201915f9160081c015b80831461250f575f838152602088905260409020547f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f7f5555555555555555555555555555555555555555555555555555555555555555600183901c168203600281901c7f3333333333333333333333333333333333333333333333333333333333333333908116911601600481901c01167f01010101010101010101010101010101010101010101010101010101010101010260f81c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911460081b1784019350826001019250612421565b505b5f828152602087905260409020547f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f7f555555555555555555555555555555555555555555555555555555555555555591831c6101008790031b600181901c929092168203600281901c7f3333333333333333333333333333333333333333333333333333333333333333908116911601600481901c01167f01010101010101010101010101010101010101010101010101010101010101010260f81c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911460081b1790920195945050505050565b815183511461263d576040517f7801f4e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff841661268a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b335f5b8451811015612786575f8582815181106126a9576126a961469d565b602002602001015190505f8583815181106126c6576126c661469d565b60200260200101519050806001148015612717575073ffffffffffffffffffffffffffffffffffffffff89165f908152600160208181526040808420600887901c85529091529091205460ff84161c165b156121b2575073ffffffffffffffffffffffffffffffffffffffff8881165f908152600160208181526040808420600887901c808652908352818520805460ff90981685901b80199098169055948c16845282825280842094845293905291902080549092179091550161268d565b506127bf868686517f0000000000000000000000000000000000000000000000000de0b6b3a76400006127b991906146ca565b5f611fc6565b5f805f865160016127d09190614721565b905073ffffffffffffffffffffffffffffffffffffffff8916915073ffffffffffffffffffffffffffffffffffffffff88169250602087015183837fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460025b81811461286e578060200288015184847fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600101612832565b5061287b848a8a8a6130b4565b612889848a8a8a8a8a6136f0565b505050505050505050565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6001600554612918919061452e565b905090565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610b11565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526003602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b606060048054612a7e906144b0565b80601f0160208091040260200160405190810160405280929190818152602001828054612aaa906144b0565b8015612af55780601f10612acc57610100808354040283529160200191612af5565b820191905f5260205f20905b815481529060010190602001808311612ad857829003601f168201915b50505050509050919050565b6060815f03612b4357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b815f5b8115612b6c5780612b5681614a5e565b9150612b659050600a8361470e565b9150612b46565b5f8167ffffffffffffffff811115612b8657612b86613f29565b6040519080825280601f01601f191660200182016040528015612bb0576020820181803683370190505b5090505b8415610f0157612bc560018361452e565b9150612bd2600a86614a95565b612bdd906030614721565b60f81b818381518110612bf257612bf261469d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350612c2b600a8661470e565b9450612bb4565b73ffffffffffffffffffffffffffffffffffffffff8416612c81576040517fe602df050000000000000000000000000000000000000000000000000000000081525f6004820152602401610b11565b73ffffffffffffffffffffffffffffffffffffffff8316612cd0576040517f94280d620000000000000000000000000000000000000000000000000000000081525f6004820152602401610b11565b73ffffffffffffffffffffffffffffffffffffffff8085165f9081526008602090815260408083209387168352929052208290558015612070578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051612d6991815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8085165f9081526007602052604080822054928616825290205483821015612e06576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201526024810183905260448101859052606401610b11565b73ffffffffffffffffffffffffffffffffffffffff8087165f81815260076020526040808220888703905592881680825290839020848801905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612e719088815260200190565b60405180910390a382156130665773ffffffffffffffffffffffffffffffffffffffff86165f908152600b602052604090205460ff1680612f2a575f7f0000000000000000000000000000000000000000000000000de0b6b3a7640000612ed8878661452e565b612ee2919061470e565b612f0c7f0000000000000000000000000000000000000000000000000de0b6b3a76400008661470e565b612f16919061452e565b90508015612f2857612f288882613846565b505b73ffffffffffffffffffffffffffffffffffffffff86165f908152600b602052604090205460ff1661306457600c546001148015612f655750805b8015612f8a57505f5473ffffffffffffffffffffffffffffffffffffffff8881169116145b15612fe65773ffffffffffffffffffffffffffffffffffffffff86165f908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556002600c55613064565b5f6130117f0000000000000000000000000000000000000000000000000de0b6b3a76400008461470e565b7f0000000000000000000000000000000000000000000000000de0b6b3a764000061303c8886614721565b613046919061470e565b613050919061452e565b90508015613062576122468782613a8b565b505b505b505050505050565b6040805160018082528183019092526060916020808301908036833701905050905081815f815181106130a3576130a361469d565b602002602001018181525050919050565b73ffffffffffffffffffffffffffffffffffffffff82165f908152600b602052604090205460ff166132cd5760155473ffffffffffffffffffffffffffffffffffffffff83165f908152600760205260409020541115613170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5472616e736665722065786365656473206d6178696d756d2077616c6c6574006044820152606401610b11565b60165460ff16156132cd57325f908152601760205260409020544311613217576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f60448201527f7765642e000000000000000000000000000000000000000000000000000000006064820152608401610b11565b325f90815260176020526040902043905573ffffffffffffffffffffffffffffffffffffffff82163b156132cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f436f6e74726163742074726164696e672072657374726963746564206174206c60448201527f61756e63680000000000000000000000000000000000000000000000000000006064820152608401610b11565b612070565b73ffffffffffffffffffffffffffffffffffffffff84163b15613066576040517f01ffc9a70000000000000000000000000000000000000000000000000000000081527fd9b67a2600000000000000000000000000000000000000000000000000000000600482015273ffffffffffffffffffffffffffffffffffffffff8516906301ffc9a790602401602060405180830381865afa158015613377573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061339b9190614aa8565b15613566576040517ff23a6e6100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063f23a6e61906133fa9089908990889088908890600401614ac3565b6020604051808303815f875af1925050508015613452575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261344f91810190614b12565b60015b6134e55761345e614b2d565b806308c379a0036134b15750613472614b46565b8061347d57506134b3565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1191906140ca565b505b6040517f9c05499b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014613560576040517f9c05499b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50613066565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906135be908990899088908790600401614bed565b6020604051808303815f875af1925050508015613616575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261361391810190614b12565b60015b61367557613622614b2d565b806308c379a0036136415750613636614b46565b8061347d5750613643565b505b6040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081167f150b7a020000000000000000000000000000000000000000000000000000000014613064576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff84163b15613066576040517fbc197c8100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063bc197c81906137679089908990889088908890600401614c35565b6020604051808303815f875af19250505080156137bf575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526137bc91810190614b12565b60015b6137cb5761345e614b2d565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014613064576040517f9c05499b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216613893576040517fb817eee700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055433905f8367ffffffffffffffff8111156138b2576138b2613f29565b6040519080825280602002602001820160405280156138db578160200160208202803683370190505b5090505f8467ffffffffffffffff8111156138f8576138f8613f29565b604051908082528060200260200182016040528015613921578160200160208202803683370190505b5090505f5b858110156139eb5760018382815181106139425761394261469d565b60209081029190910181019190915273ffffffffffffffffffffffffffffffffffffffff88165f90815260019091526040812061397f9086613d13565b9050808383815181106139945761399461469d565b60209081029190910181019190915273ffffffffffffffffffffffffffffffffffffffff89165f90815260018083526040808320600886901c8452909352919020805460ff841683901b1916905590945001613926565b505f806139f9876001614721565b905073ffffffffffffffffffffffffffffffffffffffff8816915060208301515f837fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460025b818114613a7e57806020028401515f847fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600101613a42565b5061306286895f866130b4565b60608073ffffffffffffffffffffffffffffffffffffffff8416613adb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b825f03613b14576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b338367ffffffffffffffff811115613b2e57613b2e613f29565b604051908082528060200260200182016040528015613b57578160200160208202803683370190505b5092508367ffffffffffffffff811115613b7357613b73613f29565b604051908082528060200260200182016040528015613b9c578160200160208202803683370190505b5091505f613ba960055490565b905080857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff031015613bd9575f80fd5b5f5b85811015613c2b57808201858281518110613bf857613bf861469d565b6020026020010181815250506001848281518110613c1857613c1861469d565b6020908102919091010152600101613bdb565b5073ffffffffffffffffffffffffffffffffffffffff86165f908152600160205260409020613c5b908287613e20565b8460055f828254613c6c9190614721565b909155505f905080613c7e8784614721565b905073ffffffffffffffffffffffffffffffffffffffff8816915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114613cfb5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600101613cc5565b50613d08845f8a896130b4565b505050509250929050565b600881901c5f818152602084905260409020547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff919060ff84191690811b901c81158117613d72575b5081015f81815260409020548115811715613d5c575b8015613e1857613e09817f0706060506020504060203020504030106050205030304010505030400000000601f6f8421084210842108cc6318c6db6d54be831560081b6fffffffffffffffffffffffffffffffff851160071b1784811c67ffffffffffffffff1060061b1784811c63ffffffff1060051b1784811c61ffff1060041b1784811c60ff1060031b1793841c1c161a1790565b600883901b178481115f031792505b505092915050565b5f1960ff8316846020528360081c5f5261010183820110613e7c575f805160408220805485851b1790559390910160ff811693600181019160081c015b808214613e7857815f528360405f2055600182019150613e5d565b505f525b60405f208284610100031c821b8154178155505050505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611e4f575f80fd5b5f8060408385031215613eca575f80fd5b613ed383613e96565b946020939093013593505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a11575f80fd5b5f60208284031215613f1e575f80fd5b813561180a81613ee1565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff82111715613f9a57613f9a613f29565b6040525050565b5f67ffffffffffffffff831115613fba57613fba613f29565b604051613fef60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8701160182613f56565b809150838152848484011115614003575f80fd5b838360208301375f60208583010152509392505050565b5f6020828403121561402a575f80fd5b813567ffffffffffffffff811115614040575f80fd5b8201601f81018413614050575f80fd5b610f0184823560208401613fa1565b5f5b83811015614079578181015183820152602001614061565b50505f910152565b5f815180845261409881602086016020860161405f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081525f61180a6020830184614081565b5f602082840312156140ec575f80fd5b5035919050565b5f805f60608486031215614105575f80fd5b61410e84613e96565b925061411c60208501613e96565b9150604084013590509250925092565b5f805f6060848603121561413e575f80fd5b61414784613e96565b95602085013595506040909401359392505050565b5f67ffffffffffffffff82111561417557614175613f29565b5060051b60200190565b5f82601f83011261418e575f80fd5b8135602061419b8261415c565b6040516141a88282613f56565b80915083815260208101915060208460051b8701019350868411156141cb575f80fd5b602086015b848110156141e757803583529183019183016141d0565b509695505050505050565b5f82601f830112614201575f80fd5b61180a83833560208501613fa1565b5f805f805f60a08688031215614224575f80fd5b61422d86613e96565b945061423b60208701613e96565b9350604086013567ffffffffffffffff80821115614257575f80fd5b61426389838a0161417f565b94506060880135915080821115614278575f80fd5b61428489838a0161417f565b93506080880135915080821115614299575f80fd5b506142a6888289016141f2565b9150509295509295909350565b5f80604083850312156142c4575f80fd5b823567ffffffffffffffff808211156142db575f80fd5b818501915085601f8301126142ee575f80fd5b813560206142fb8261415c565b6040516143088282613f56565b83815260059390931b8501820192828101915089841115614327575f80fd5b948201945b8386101561434c5761433d86613e96565b8252948201949082019061432c565b96505086013592505080821115614361575f80fd5b5061436e8582860161417f565b9150509250929050565b5f815180845260208085019450602084015f5b838110156143a75781518752958201959082019060010161438b565b509495945050505050565b602081525f61180a6020830184614378565b8015158114610a11575f80fd5b5f80604083850312156143e2575f80fd5b6143eb83613e96565b915060208301356143fb816143c4565b809150509250929050565b5f60208284031215614416575f80fd5b61180a82613e96565b5f8060408385031215614430575f80fd5b61443983613e96565b915061444760208401613e96565b90509250929050565b5f805f805f60a08688031215614464575f80fd5b61446d86613e96565b945061447b60208701613e96565b93506040860135925060608601359150608086013567ffffffffffffffff8111156144a4575f80fd5b6142a6888289016141f2565b600181811c908216806144c457607f821691505b6020821081036144fb577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8181038181111561083457610834614501565b601f821115611fc157805f5260205f20601f840160051c810160208510156145665750805b601f840160051c820191505b81811015610f75575f8155600101614572565b815167ffffffffffffffff81111561459f5761459f613f29565b6145b3816145ad84546144b0565b84614541565b602080601f831160018114614605575f84156145cf5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555613066565b5f858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b8281101561465157888601518255948401946001909101908401614632565b508582101561468d57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b808202811582820484141761083457610834614501565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f8261471c5761471c6146e1565b500490565b8082018082111561083457610834614501565b5f815161474581856020860161405f565b9290920192915050565b5f80845461475c816144b0565b6001828116801561477457600181146147a7576147d3565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528215158302870194506147d3565b885f526020805f205f5b858110156147ca5781548a8201529084019082016147b1565b50505082870194505b5050505083516147e781836020880161405f565b01949350505050565b7f7b226e616d65223a20220000000000000000000000000000000000000000000081525f885161482781600a850160208d0161405f565b7f204461776e202300000000000000000000000000000000000000000000000000600a918401918201528851614864816011840160208d0161405f565b7f222c226465736372697074696f6e223a220000000000000000000000000000006011929091019182015287516148a2816022840160208c0161405f565b7f222c2265787465726e616c5f75726c223a2268747470733a2f2f6461776e3430602292909101918201527f342e636f6d222c22696d616765223a220000000000000000000000000000000060428201528651614906816052840160208b0161405f565b61497f61495661495061494a6149216052868801018c614734565b7f2e6a7067222c2022616e696d6174696f6e5f75726c223a220000000000000000815260180190565b89614734565b87614734565b7f2e6d703400000000000000000000000000000000000000000000000000000000815260040190565b9b9a5050505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c000000000081525f83516149c581601b85016020880161405f565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a2243601b918401918201527f6f6c6f72222c2276616c7565223a220000000000000000000000000000000000603b8201528351614a2881604a84016020880161405f565b7f227d5d7d00000000000000000000000000000000000000000000000000000000604a9290910191820152604e01949350505050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614a8e57614a8e614501565b5060010190565b5f82614aa357614aa36146e1565b500690565b5f60208284031215614ab8575f80fd5b815161180a816143c4565b5f73ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a06080830152614b0760a0830184614081565b979650505050505050565b5f60208284031215614b22575f80fd5b815161180a81613ee1565b5f60033d1115614b435760045f803e505f5160e01c5b90565b5f60443d1015614b535790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715614ba157505050505090565b8285019150815181811115614bb95750505050505090565b843d8701016020828501011115614bd35750505050505090565b614be260208286010187613f56565b509095945050505050565b5f73ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152614c2b6080830184614081565b9695505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a06040830152614c6d60a0830186614378565b8281036060840152614c7f8186614378565b90508281036080840152614c938185614081565b9897505050505050505056fe41206e6577206461776e20666f7220343034202d20746865206d6f73742067617320656666696369656e7420455243203430342c2074686520666972737420696e647573747279207374616e646172642031302c3030302033442072656e6465726564204e465420737570706c7920636f6c6c656374696f6e2ea2646970667358221220b94f42dc29fe364b40075a68a153f524a00e47445e008571d0d1511a065bac8964736f6c63430008180033

Deployed Bytecode Sourcemap

75597:6738:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47068:318;;;;;;:::i;:::-;;:::i;:::-;;;620:25:1;;;608:2;593:18;47068:318:0;;;;;;;;45272:531;;;;;;:::i;:::-;;:::i;:::-;;;1253:14:1;;1246:22;1228:41;;1216:2;1201:18;45272:531:0;1088:187:1;78198:91:0;;;;;;:::i;:::-;;:::i;:::-;;42546:18;;;:::i;:::-;;;;;;;:::i;42275:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3969:42:1;3957:55;;;3939:74;;3927:2;3912:18;42275:46:0;3793:226:1;68706:483:0;;;;;;:::i;:::-;;:::i;76379:32::-;;;;;;;;;81963:253;;;:::i;82224:108::-;;;;;;:::i;:::-;;:::i;42718:36::-;;;;;77844:98;;;;;;:::i;:::-;;:::i;69338:827::-;;;;;;:::i;:::-;;:::i;46747:170::-;;;;;;:::i;:::-;;:::i;49109:418::-;;;;;;:::i;:::-;;:::i;42651:31::-;;;;;;;;6953:4:1;6941:17;;;6923:36;;6911:2;6896:18;42651:31:0;6781:184:1;78064:126:0;;;;;;:::i;:::-;;:::i;47552:530::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;77621:91::-;;;:::i;44233:119::-;;;;;;:::i;:::-;;:::i;42831:37::-;;;;;77720:116;;;;;;:::i;:::-;;:::i;42786:38::-;;;;;46405:114;;;;;;:::i;:::-;46495:16;;46468:7;46495:16;;;:9;:16;;;;;;;46405:114;3117:103;;;:::i;76100:28::-;;;:::i;75340:250::-;;;;;;:::i;:::-;;:::i;2442:87::-;2488:7;2515:6;;;2442:87;;42594:20;;;:::i;73624:1264::-;;;;;;:::i;:::-;;:::i;42914:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;43041:29;;;;;;48155:155;;;;;;:::i;:::-;;:::i;68362:186::-;;;;;;:::i;:::-;;:::i;81745:210::-;;;:::i;81319:418::-;;;;;;:::i;:::-;;:::i;80972:339::-;;;;;;:::i;:::-;;:::i;45060:140::-;;;;;;:::i;:::-;;:::i;78297:2667::-;;;;;;:::i;:::-;;:::i;75689:26::-;;;:::i;76280:29::-;;;;;;68556:142;;;;;;:::i;:::-;68663:18;;;;68636:7;68663:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;68556:142;77950:106;;;;;;:::i;:::-;;:::i;48382:168::-;;;;;;:::i;:::-;48505:27;;;;48481:4;48505:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;48382:168;76246:27;;;;;;48622:410;;;;;;:::i;:::-;;:::i;75661:21::-;;;:::i;3375:220::-;;;;;;:::i;:::-;;:::i;76348:24::-;;;;;;47068:318;47154:7;47177:21;;;47174:88;;47222:28;;;;;;;;;;;;;;47174:88;47275:15;;;;;;;:6;:15;;;;;;;;34200:1;34191:10;;;34180:22;;;;;;;;;34215:4;34207:12;;34180:40;34179:46;47272:104;;;-1:-1:-1;47322:1:0;47315:8;;47272:104;-1:-1:-1;47363:1:0;47272:104;47068:318;;;;:::o;45272:531::-;45374:4;45411:41;;;45426:26;45411:41;;:110;;-1:-1:-1;45469:52:0;;;45484:37;45469:52;45411:110;:169;;;-1:-1:-1;45538:42:0;;;45553:27;45538:42;45411:169;:211;;;-1:-1:-1;45597:25:0;;;;;45411:211;:288;;;-1:-1:-1;45674:25:0;;;;;45411:288;:384;;;-1:-1:-1;24529:25:0;24514:40;;;;45759:36;24405:157;78198:91;2328:13;:11;:13::i;:::-;78266:15:::1;78274:6;78266:7;:15::i;:::-;78198:91:::0;:::o;42546:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68706:483::-;68779:4;68812:10;68845:14;44739:13;;;44665:95;68845:14;68837:5;:22;:35;;;;;68871:1;68863:5;:9;68837:35;68833:327;;;68895:23;68905:5;68912;68895:9;:23::i;:::-;68891:96;;68946:25;;;;;3969:42:1;3957:55;;68946:25:0;;;3939:74:1;3912:18;;68946:25:0;;;;;;;;68891:96;69003:18;;;;:11;:18;;;;;;;;;:28;;;;;;;;;;;;;;69053:31;;620:25:1;;;69053:31:0;;;;;;593:18:1;69053:31:0;;;;;;;68833:327;;;69117:31;69126:5;69133:7;69142:5;69117:8;:31::i;:::-;-1:-1:-1;69177:4:0;;68706:483;-1:-1:-1;;;68706:483:0:o;81963:253::-;2328:13;:11;:13::i;:::-;82039:1:::1;82024:12;;:16;:47;;;;;82059:12;;82044;:27;82024:47;82016:69;;;::::0;::::1;::::0;;11229:2:1;82016:69:0::1;::::0;::::1;11211:21:1::0;11268:1;11248:18;;;11241:29;11306:11;11286:18;;;11279:39;11335:18;;82016:69:0::1;11027:332:1::0;82016:69:0::1;82163:1;82150:12;;:14;;;;:::i;:::-;82167:12;::::0;82140:25;::::1;::::0;82191:14:::1;82204:1;82167:12:::0;82191:14:::1;:::i;:::-;82123:84;::::0;;::::1;::::0;::::1;11871:19:1::0;;;;11906:12;;11899:28;;;;82181:25:0::1;11943:12:1::0;;;11936:28;11980:12;;82123:84:0::1;::::0;;;;;::::1;::::0;;;;;;82113:95;;82123:84:::1;82113:95:::0;;::::1;::::0;82096:14:::1;:112:::0;81963:253::o;82224:108::-;82279:13;82312:12;82321:2;82312:8;:12::i;77844:98::-;2328:13;:11;:13::i;:::-;77916:7:::1;:18;77926:8:::0;77916:7;:18:::1;:::i;:::-;;77844:98:::0;:::o;69338:827::-;69425:4;69454:14;44739:13;;;44665:95;69454:14;69446:5;:22;69442:694;;;69489:12;;;;;;;:6;:12;;;;;;;;34200:1;34191:10;;;34180:22;;;;;;;;;34215:4;34207:12;;34180:40;34179:46;69485:96;;69540:25;;;;;3969:42:1;3957:55;;69540:25:0;;;3939:74:1;3912:18;;69540:25:0;3793:226:1;69485:96:0;69623:10;:18;;;;;;;:74;;-1:-1:-1;48505:27:0;;;48481:4;48505:27;;;:18;:27;;;;;;;;69686:10;48505:37;;;;;;;;;;69662:35;69623:74;:127;;;;-1:-1:-1;69732:18:0;;;;:11;:18;;;;;;;;69718:10;:32;;69623:127;69601:238;;;69792:31;;;;;69812:10;69792:31;;;3939:74:1;3912:18;;69792:31:0;3793:226:1;69601:238:0;69855:40;69865:4;69871:2;69875:12;69889:5;69855:9;:40::i;:::-;69919:18;;;;:11;:18;;;;;;;;69912:25;;;;;;69954:48;;;;;;;;;;;;69972:4;;69978:2;;69931:5;;69912:25;;69954:17;:48::i;:::-;69442:694;;;70037:40;70053:4;70059:10;70071:5;70037:15;:40::i;:::-;70092:32;70102:4;70108:2;70112:5;70119:4;70092:9;:32::i;46747:170::-;46839:7;46866:43;46889:5;46896:12;46889:5;46896:4;:12;:::i;:::-;46866:13;;;;;;;:6;:13;;;;;;:43;:22;:43::i;:::-;46859:50;46747:170;-1:-1:-1;;;;46747:170:0:o;49109:418::-;49325:20;;;663:10;49325:20;;:60;;-1:-1:-1;49349:36:0;49366:4;663:10;48382:168;:::i;49349:36::-;49320:137;;49410:35;;;;;;;;;;;;;;49320:137;49467:52;49490:4;49496:2;49500:3;49505:7;49514:4;49467:22;:52::i;:::-;49109:418;;;;;:::o;78064:126::-;2328:13;:11;:13::i;:::-;78150:14:::1;:32;78167:15:::0;78150:14;:32:::1;:::i;47552:530::-:0;47708:16;47764:3;:10;47745:8;:15;:29;47742:90;;47798:22;;;;;;;;;;;;;;47742:90;47844:30;47891:8;:15;47877:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47877:30:0;;47844:63;;47925:9;47920:122;47944:8;:15;47940:1;:19;47920:122;;;48000:30;48010:8;48019:1;48010:11;;;;;;;;:::i;:::-;;;;;;;48023:3;48027:1;48023:6;;;;;;;;:::i;:::-;;;;;;;48000:9;:30::i;:::-;47981:13;47995:1;47981:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;47961:3;;47920:122;;;-1:-1:-1;48061:13:0;47552:530;-1:-1:-1;;;47552:530:0:o;77621:91::-;2328:13;:11;:13::i;:::-;77691::::1;::::0;;77674:30;;::::1;77691:13;::::0;;::::1;77690:14;77674:30;::::0;;77621:91::o;44233:119::-;2328:13;:11;:13::i;:::-;44319:17:::1;::::0;;;::::1;;::::0;;;:9:::1;:17;::::0;;;;:25;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;44233:119::o;77720:116::-;2328:13;:11;:13::i;:::-;77825:3:::1;77801:21;77815:7:::0;77801:11:::1;:21;:::i;:::-;:27;;;;:::i;:::-;77789:9;:39:::0;-1:-1:-1;77720:116:0:o;3117:103::-;2328:13;:11;:13::i;:::-;3182:30:::1;3209:1;3182:18;:30::i;:::-;3117:103::o:0;76100:28::-;;;;;;;:::i;75340:250::-;75407:16;75439:14;:12;:14::i;:::-;75457:1;75439:19;75436:74;;-1:-1:-1;;75482:16:0;;;75496:1;75482:16;;;;;;;;;75340:250::o;75436:74::-;75527:55;75543:5;44577:1;44739:13;;73624:1264;:::i;42594:20::-;;;;;;;:::i;73624:1264::-;73756:16;73823:4;73814:5;:13;73810:45;;73836:19;;;;;;;;;;;;;;73810:45;44577:1;73961:5;:23;73957:87;;;44577:1;74005:23;;73957:87;74123:17;74143:14;44739:13;;;44665:95;74143:14;74123:34;;74183:9;74176:4;:16;74172:73;;;74220:9;74213:16;;74172:73;74261:22;74309:4;74301:5;:12;74298:157;;;74351:29;74361:5;74368;74375:4;74351:9;:29::i;:::-;74334:46;;74298:157;;;-1:-1:-1;74438:1:0;74298:157;74483:25;74525:14;74511:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74511:29:0;-1:-1:-1;74589:13:0;;;74557:29;74589:13;;;:6;:13;;;;;74483:57;;-1:-1:-1;74672:5:0;;74631:209;74698:14;74683:11;:29;74631:209;;34200:1;34191:10;;;33918;34180:22;;;;;;;;;;;34215:4;34207:12;;34180:40;34224:1;34179:46;74738:87;;;74804:1;74778:8;74787:13;;;;;;74778:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;74738:87;74714:3;;;;;74631:209;;;-1:-1:-1;74861:8:0;;73624:1264;-1:-1:-1;;;;;;;;73624:1264:0:o;48155:155::-;48250:52;663:10;48283:8;48293;48250:18;:52::i;68362:186::-;68431:4;68464:10;68485:33;68464:10;68502:2;68506:5;68513:4;68485:9;:33::i;81745:210::-;2328:13;:11;:13::i;:::-;81805:12:::1;::::0;:17;;:79:::1;;;81857:3;81842:12;;81827;:27;;;;:::i;:::-;:33;:56;;;;-1:-1:-1::0;81864:14:0::1;::::0;:19;81827:56:::1;81797:108;;;::::0;::::1;::::0;;15230:2:1;81797:108:0::1;::::0;::::1;15212:21:1::0;15269:2;15249:18;;;15242:30;15308:18;15288;;;15281:46;15344:18;;81797:108:0::1;15028:340:1::0;81797:108:0::1;81931:16;:12;81946:1;81931:16;:::i;:::-;81916:12;:31:::0;81745:210::o;81319:418::-;81367:10;81380:17;;;:13;:17;;;;;;81416:11;;;;81408:38;;;;;;;15705:2:1;81408:38:0;;;15687:21:1;15744:2;15724:18;;;15717:30;15783:16;15763:18;;;15756:44;15817:18;;81408:38:0;15503:338:1;81408:38:0;81465:25;81475:10;81487:2;81465:9;:25::i;:::-;81457:50;;;;;;;16048:2:1;81457:50:0;;;16030:21:1;16087:2;16067:18;;;16060:30;16126:14;16106:18;;;16099:42;16158:18;;81457:50:0;15846:336:1;81457:50:0;81531:1;81526:2;:6;:27;;;;;81551:2;81536:12;:17;81526:27;81518:49;;;;;;;11229:2:1;81518:49:0;;;11211:21:1;11268:1;11248:18;;;11241:29;11306:11;11286:18;;;11279:39;11335:18;;81518:49:0;11027:332:1;81518:49:0;81586:16;;;;:12;:16;;;;;;:21;81578:50;;;;;;;15230:2:1;81578:50:0;;;15212:21:1;15269:2;15249:18;;;15242:30;15308:18;15288;;;15281:46;15344:18;;81578:50:0;15028:340:1;81578:50:0;81697:4;81700:1;81697:2;:4;:::i;:::-;81687:15;81704:2;81718:4;81721:1;81704:2;81718:4;:::i;:::-;81670:58;;;;;;16400:19:1;;;;16435:12;;16428:28;;;;81708:15:0;16472:12:1;;;16465:28;16509:12;;;16502:28;;;16546:13;;81670:58:0;;;;;;;;;;;;;81660:69;;81670:58;81660:69;;;;81641:16;;;;:12;:16;;;;;;:88;;;;-1:-1:-1;81319:418:0:o;80972:339::-;81032:11;;;;81024:38;;;;;;;15705:2:1;81024:38:0;;;15687:21:1;15744:2;15724:18;;;15717:30;15783:16;15763:18;;;15756:44;15817:18;;81024:38:0;15503:338:1;81024:38:0;81081:25;81091:10;81103:2;81081:9;:25::i;:::-;81073:50;;;;;;;16048:2:1;81073:50:0;;;16030:21:1;16087:2;16067:18;;;16060:30;16126:14;16106:18;;;16099:42;16158:18;;81073:50:0;15846:336:1;81073:50:0;81142:17;;;;:13;:17;;;;;;:22;;:91;;-1:-1:-1;81184:17:0;;;;:13;:17;;;;;;81204:3;;81169:32;;:12;:32;:::i;:::-;:38;:63;;;;-1:-1:-1;81211:16:0;;;;:12;:16;;;;;;:21;81169:63;81134:120;;;;;;;15230:2:1;81134:120:0;;;15212:21:1;15269:2;15249:18;;;15242:30;15308:18;15288;;;15281:46;15344:18;;81134:120:0;15028:340:1;81134:120:0;81287:16;:12;81302:1;81287:16;:::i;:::-;81267:17;;;;:13;:17;;;;;;:36;80972:339::o;45060:140::-;45169:15;;;45145:4;45169:15;;;:6;:15;;;;;;;;34200:1;34191:10;;;34180:22;;;;;;;;34215:4;34207:12;;34180:40;34179:46;45169:23;45162:30;45060:140;-1:-1:-1;;;45060:140:0:o;78297:2667::-;78348:13;78383:14;44739:13;;;44665:95;78383:14;78377:2;:20;78374:54;;78406:22;;;;;;;;;;;;;;78374:54;78475:1;78451:13;78461:2;78451:9;:13::i;:::-;78445:27;:31;78441:70;;;78498:13;78508:2;78498:9;:13::i;78441:70::-;78555:1;78532:12;78526:26;;;;;:::i;:::-;;;:30;78522:2435;;;78602:12;78616:13;:2;:11;:13::i;:::-;78585:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78571:60;;78297:2667;;;:::o;78522:2435::-;78729:11;;78662:10;;;;78729:11;;78726:373;;;-1:-1:-1;78767:16:0;;;;:12;:16;;;;;;;78805:7;;;78802:174;;78883:14;;78866:36;;;;;;18014:19:1;;;;18049:12;;18042:28;;;18086:12;;78866:36:0;;;;;;;;;;;;78856:47;;;;;;78843:62;;78836:69;;78726:373;;78802:174;78972:2;78959:17;;78952:24;;78726:373;;;79060:20;;;;;;18238:19:1;;;18273:12;79060:20:0;;;;;;;;;;;;79050:31;;;;;;79037:46;;79030:53;;78726:373;79119:19;79157:25;:152;;;;;;;;;;;;;;;;;79336:11;;79157:152;;-1:-1:-1;79336:11:0;;79335:12;:48;;;;;79382:1;79357:14;79351:28;;;;;:::i;:::-;;;:32;79335:48;79334:99;;;-1:-1:-1;79389:11:0;;;;:22;;;;-1:-1:-1;79404:7:0;;79389:22;:43;;;;-1:-1:-1;79415:12:0;;:17;79389:43;79330:965;;;79456:17;;;;;;;;;;;;;;;;;;;79330:965;;;79509:1;79501:4;:9;;;79497:798;;79535:17;;;;;;;;;;;;;;;;;;;79497:798;;;79590:2;79582:4;:10;;;79578:717;;79617:14;;;;;;;;;;;;;;;;;;;79578:717;;;79669:2;79661:4;:10;;;79657:638;;79696:13;;;;;;;;;;;;;;;;;;;79657:638;;;79747:2;79739:4;:10;;;79735:560;;79774:14;;;;;;;;;;;;;;;;;;;79735:560;;;79826:2;79818:4;:10;;;79814:481;;79853:14;;;;;;;;;;;;;;;;;;;79814:481;;;79905:3;79897:4;:11;;;79893:402;;79933:16;;;;;;;;;;;;;;;;;;;79893:402;;;79987:3;79979:4;:11;;;79975:320;;80015:15;;;;;;;;;;;;;;;;;;;79975:320;;;80068:3;80060:4;:11;;;80056:239;;80096:16;;;;;;;;;;;;;;;;;;;80056:239;;;80150:3;80142:4;:11;;;80138:157;;80178:15;;;;;;;;;;;;;;;;;;;80138:157;;;80231:3;80223:4;:11;;;80219:76;;80259:16;;;;;;;;;;;;;;;;;;;80219:76;80315:20;80389:1;80364:14;80358:28;;;;;:::i;:::-;;;:32;80354:144;;;80423:14;80414:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80354:144;;;80491:7;80482:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80354:144;80519:26;80586:5;80603:13;:2;:11;:13::i;:::-;80639:11;80704:6;80712:5;80747:6;80755:5;80555:214;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80519:251;;80851:12;80916:5;80803:127;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80789:142;;;;;;;;78297:2667;;;:::o;78522:2435::-;78297:2667;;;:::o;75689:26::-;;;;;;;:::i;77950:106::-;2328:13;:11;:13::i;:::-;78024:12:::1;:24;78039:9:::0;78024:12;:24:::1;:::i;48622:410::-:0;48811:20;;;663:10;48811:20;;:60;;-1:-1:-1;48835:36:0;48852:4;663:10;48382:168;:::i;48835:36::-;48808:217;;;48887:51;48905:4;48911:2;48915;48919:6;48927:4;48933;48887:17;:51::i;:::-;48808:217;;;48978:35;;;;;;;;;;;;;;75661:21;;;;;;;:::i;3375:220::-;2328:13;:11;:13::i;:::-;3460:22:::1;::::0;::::1;3456:93;;3506:31;::::0;::::1;::::0;;3534:1:::1;3506:31;::::0;::::1;3939:74:1::0;3912:18;;3506:31:0::1;3793:226:1::0;3456:93:0::1;3559:28;3578:8;3559:18;:28::i;2607:166::-:0;2488:7;2515:6;2667:23;2515:6;663:10;2667:23;2663:103;;2714:40;;;;;663:10;2714:40;;;3939:74:1;3912:18;;2714:40:0;3793:226:1;55659:88:0;55726:4;:13;55733:6;55726:4;:13;:::i;72154:130::-;72239:37;72248:5;72255:7;72264:5;72271:4;72239:8;:37::i;:::-;72154:130;;;:::o;70173:325::-;70268:18;;;70264:88;;70310:30;;;;;70337:1;70310:30;;;3939:74:1;3912:18;;70310:30:0;3793:226:1;70264:88:0;70366:16;;;70362:88;;70406:32;;;;;70435:1;70406:32;;;3939:74:1;3912:18;;70406:32:0;3793:226:1;70362:88:0;70460:30;70468:4;70474:2;70478:5;70485:4;70460:7;:30::i;:::-;70173:325;;;;:::o;50026:1624::-;50230:16;;;50227:78;;50270:23;;;;;;;;;;;;;;50227:78;663:10;50317:16;50382:21;50400:2;50382:17;:21::i;:::-;50359:44;;50477:6;50487:1;50477:11;:35;;;;-1:-1:-1;50492:12:0;;;;;;;:6;:12;;;;;;;;34200:1;34191:10;;;34180:22;;;;;;;;;34215:4;34207:12;;34180:40;34179:46;50492:20;50474:260;;;50529:12;;;;;;;;:6;:12;;;;;;;;34692:1;34683:10;;;34672:22;;;;;;;;;:48;;34714:4;34706:12;;34700:19;;;34698:22;;34672:48;;;;;;50566:10;;;;;;;;;;;34473:22;;;;;;;;:47;;;;;;;;50599:40;;50529:12;;50566:10;;50619:12;;50599:9;:40::i;:::-;50474:260;;;50679:43;;;;;;;;;;;;;;50474:260;50940:16;50932:25;;;;50985:27;;51338:6;50932:25;50985:27;51204:25;50746:16;;51069:304;51494:44;51514:8;51524:4;51530:2;51534:3;51494:19;:44::i;:::-;51554:5;51551:91;;;51574:68;51605:8;51615:4;51621:2;51625;51629:6;51637:4;51574:30;:68::i;:::-;50216:1434;;;;50026:1624;;;;;;:::o;72743:487::-;68663:18;;;;72843:24;68663:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;72930:17;72910:37;;72906:317;;72987:5;72968:16;:24;72964:132;;;73020:60;;;;;22509:42:1;22497:55;;73020:60:0;;;22479:74:1;22569:18;;;22562:34;;;22612:18;;;22605:34;;;22452:18;;73020:60:0;22277:368:1;72964:132:0;73139:57;73148:5;73155:7;73183:5;73164:16;:24;73190:5;73139:8;:57::i;38943:786::-;39065:13;39147:1;39138:10;;;39187:4;39179:12;;39229:3;39212:14;;;:20;39206:417;;39278:10;:18;;;;;;;;;;;28312:12;28185:11;39278:27;;;28178:1;28174:9;;;28170:27;;;;28163:35;;28250:1;28246:9;;;28257:11;28242:27;;;28221:19;;28217:53;28304:1;28300:9;;;28293:17;28289:36;28378:13;28371:21;28366:3;28362:31;28101:6;28134:10;;;28351:1;28347:13;28344:50;39356:14;;39424:4;39405:23;;;39356:14;-1:-1:-1;39480:8:0;;;;39325:17;;39375:1;39355:21;39345:32;39475:133;39500:9;39490:6;:19;39475:133;;39569:10;:18;;;;;;;;;;;28312:12;28185:11;28178:1;28174:9;;;28170:27;28163:35;;28250:1;28246:9;;;28257:11;28242:27;;;28221:19;;28217:53;28304:1;28300:9;;;28293:17;28289:36;28378:13;28371:21;28366:3;28362:31;28101:6;28134:10;;;28351:1;28347:13;28344:50;39544:44;;;;39511:8;;;;;39475:133;;;39235:388;39206:417;39663:10;:18;;;;;;;;;;;28312:12;28185:11;39663:27;;;39696:3;:12;;;39662:47;28178:1;28174:9;;;28170:27;;;;28163:35;;28250:1;28246:9;;;28257:11;28242:27;;;28221:19;;28217:53;28304:1;28300:9;;;28293:17;28289:36;28378:13;28371:21;28366:3;28362:31;28101:6;28134:10;;;28351:1;28347:13;28344:50;39637:73;;;;38943:786;-1:-1:-1;;;;;38943:786:0:o;52008:2807::-;52230:7;:14;52216:3;:10;:28;52213:89;;52268:22;;;;;;;;;;;;;;52213:89;52317:16;;;52314:78;;52357:23;;;;;;;;;;;;;;52314:78;663:10;52402:16;52504:370;52528:3;:10;52524:1;:14;52504:370;;;52560:10;52573:3;52577:1;52573:6;;;;;;;;:::i;:::-;;;;;;;52560:19;;52594:14;52611:7;52619:1;52611:10;;;;;;;;:::i;:::-;;;;;;;52594:27;;52641:6;52651:1;52641:11;:35;;;;-1:-1:-1;52656:12:0;;;;;;;:6;:12;;;;;;;;34200:1;34191:10;;;34180:22;;;;;;;;;34215:4;34207:12;;34180:40;34179:46;52656:20;52638:225;;;-1:-1:-1;52697:12:0;;;;;;;;:6;:12;;;;;;;;34692:1;34683:10;;;34672:22;;;;;;;;;:48;;34714:4;34706:12;;;34700:19;;;34698:22;;34672:48;;;;;52738:10;;;;;;;;;;;34473:22;;;;;;;;;:47;;;;;;;;52540:3;52504:370;;;;52884:53;52894:4;52900:2;52919:3;:10;52904:12;:25;;;;:::i;:::-;52931:5;52884:9;:53::i;:::-;52950:16;52977:18;53006:11;53020:3;:10;53033:1;53020:14;;;;:::i;:::-;53006:28;;53523:16;53517:4;53513:27;53499:41;;53574:16;53570:2;53566:25;53554:37;;53932:4;53927:3;53923:14;53917:21;53881:8;53841:10;53783:25;53728:1;53671;53648:319;54255:1;54217:336;54291:3;54282:7;54279:16;54217:336;;54527:7;54521:4;54517:18;54512:3;54508:28;54502:35;54492:8;54480:10;54453:25;54450:1;54447;54442:96;54340:1;54327:15;54217:336;;;-1:-1:-1;54675:44:0;54695:8;54705:4;54711:2;54715:3;54675:19;:44::i;:::-;54732:75;54768:8;54778:4;54784:2;54788:3;54793:7;54802:4;54732:35;:75::i;:::-;52202:2613;;;;52008:2807;;;;;:::o;3755:191::-;3829:16;3848:6;;;3865:17;;;;;;;;;;3898:40;;3848:6;;;;;;;3898:40;;3829:16;3898:40;3818:128;3755:191;:::o;44858:114::-;44905:7;44577:1;44739:13;;44932:32;;;;:::i;:::-;44925:39;;44858:114;:::o;63423:331::-;63578:8;63569:17;;:5;:17;;;63561:71;;;;;;;23322:2:1;63561:71:0;;;23304:21:1;23361:2;23341:18;;;23334:30;23400:34;23380:18;;;23373:62;23471:11;23451:18;;;23444:39;23500:19;;63561:71:0;23120:405:1;63561:71:0;63643:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;63705:41;;1228::1;;;63705::0;;1201:18:1;63705:41:0;;;;;;;63423:331;;;:::o;46214:105::-;46274:13;46307:4;46300:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46214:105;;;:::o;13478:723::-;13534:13;13755:5;13764:1;13755:10;13751:53;;-1:-1:-1;;13782:10:0;;;;;;;;;;;;;;;;;;13478:723::o;13751:53::-;13829:5;13814:12;13870:78;13877:9;;13870:78;;13903:8;;;;:::i;:::-;;-1:-1:-1;13926:10:0;;-1:-1:-1;13934:2:0;13926:10;;:::i;:::-;;;13870:78;;;13958:19;13990:6;13980:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13980:17:0;;13958:39;;14008:154;14015:10;;14008:154;;14042:11;14052:1;14042:11;;:::i;:::-;;-1:-1:-1;14111:10:0;14119:2;14111:5;:10;:::i;:::-;14098:24;;:2;:24;:::i;:::-;14085:39;;14068:6;14075;14068:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;14139:11:0;14148:2;14139:11;;:::i;:::-;;;14008:154;;72292:443;72405:19;;;72401:91;;72448:32;;;;;72477:1;72448:32;;;3939:74:1;3912:18;;72448:32:0;3793:226:1;72401:91:0;72506:21;;;72502:92;;72551:31;;;;;72579:1;72551:31;;;3939:74:1;3912:18;;72551:31:0;3793:226:1;72502:92:0;72604:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;72650:78;;;;72701:7;72685:31;;72694:5;72685:31;;;72710:5;72685:31;;;;620:25:1;;608:2;593:18;;474:177;72685:31:0;;;;;;;;72292:443;;;;:::o;70506:1640::-;70625:15;;;;70603:19;70625:15;;;:9;:15;;;;;;;70671:13;;;;;;;;70699:19;;;70695:109;;;70742:50;;;;;22509:42:1;22497:55;;70742:50:0;;;22479:74:1;22569:18;;;22562:34;;;22612:18;;;22605:34;;;22452:18;;70742:50:0;22277:368:1;70695:109:0;70917:15;;;;;;;;:9;:15;;;;;;70935:19;;;70917:37;;71085:13;;;;;;;;;;71101:17;;;71085:33;;71147:25;;;;;;70949:5;620:25:1;;608:2;593:18;;474:177;71147:25:0;;;;;;;;71188:4;71185:954;;;71280:15;;;71269:8;71280:15;;;:9;:15;;;;;;;;;71310:234;;71339:22;71420:12;71397:19;71411:5;71397:11;:19;:::i;:::-;71396:36;;;;:::i;:::-;71365:26;71379:12;71365:11;:26;:::i;:::-;71364:69;;;;:::i;:::-;71339:94;-1:-1:-1;71455:18:0;;71452:76;;71496:32;71507:4;71513:14;71496:10;:32::i;:::-;71320:224;71310:234;71628:13;;;;;;;:9;:13;;;;;;;;71623:505;;71665:10;;71679:1;71665:15;:22;;;;;71684:3;71665:22;:41;;;;-1:-1:-1;2488:7:0;2515:6;;71691:15;;;2515:6;;71691:15;71665:41;71662:451;;;71789:13;;;;;;;:9;:13;;;;;:20;;;;71805:4;71789:20;;;71845:1;71832:10;:14;71662:451;;;71895:22;71960:24;71972:12;71960:9;:24;:::i;:::-;71943:12;71922:17;71934:5;71922:9;:17;:::i;:::-;71921:34;;;;:::i;:::-;71920:65;;;;:::i;:::-;71895:90;-1:-1:-1;72011:18:0;;72008:85;;72056:37;72074:2;72078:14;72056:17;:37::i;72008:85::-;71872:241;71662:451;71194:945;71185:954;70592:1554;;70506:1640;;;;:::o;68192:162::-;68301:16;;;68315:1;68301:16;;;;;;;;;68258:22;;68301:16;;;;;;;;;;;-1:-1:-1;68301:16:0;68293:24;;68339:7;68328:5;68334:1;68328:8;;;;;;;;:::i;:::-;;;;;;:18;;;;;68192:162;;;:::o;76936:677::-;77107:13;;;;;;;:9;:13;;;;;;;;77103:422;;77162:9;;77145:13;;;;;;;:9;:13;;;;;;:26;;77137:70;;;;;;;24049:2:1;77137:70:0;;;24031:21:1;24088:2;24068:18;;;24061:30;24127:33;24107:18;;;24100:61;24178:18;;77137:70:0;23847:355:1;77137:70:0;77226:13;;;;77222:292;;;77279:9;77268:21;;;;:10;:21;;;;;;77292:12;-1:-1:-1;77260:84:0;;;;;;;24409:2:1;77260:84:0;;;24391:21:1;24448:2;24428:18;;;24421:30;24487:34;24467:18;;;24460:62;24558:6;24538:18;;;24531:34;24582:19;;77260:84:0;24207:400:1;77260:84:0;77374:9;77363:21;;;;:10;:21;;;;;77387:12;77363:36;;:21;77428:23;;;:28;77420:78;;;;;;;24814:2:1;77420:78:0;;;24796:21:1;24853:2;24833:18;;;24826:30;24892:34;24872:18;;;24865:62;24963:7;24943:18;;;24936:35;24988:19;;77420:78:0;24612:401:1;77420:78:0;77555:50;70173:325;65990:1389;66205:13;;;6242:20;6290:8;66201:1171;;66241:57;;;;;66271:26;66241:57;;;25162:98:1;66241:29:0;;;;;;25135:18:1;;66241:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66237:1124;;;66323:72;;;;;:38;;;;;;:72;;66362:8;;66372:4;;66378:2;;66382:6;;66390:4;;66323:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66323:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;66319:495;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;66689:6;66682:14;;;;;;;;;;;:::i;66319:495::-;;;66753:41;;;;;;;;;;;;;;66319:495;66449:55;;;66461:43;66449:55;66445:160;;66540:41;;;;;;;;;;;;;;66445:160;66396:228;66237:1124;;;66871:61;;;;;:35;;;;;;:61;;66907:8;;66917:4;;66923:2;;66927:4;;66871:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66871:61:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;66867:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;67286:40;;;;;;;;;;;;;;66867:479;66986:52;;;66998:40;66986:52;66982:156;;67074:40;;;;;;;;;;;;;;67387:797;67627:13;;;6242:20;6290:8;67623:554;;67663:79;;;;;:43;;;;;;:79;;67707:8;;67717:4;;67723:3;;67728:7;;67737:4;;67663:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67663:79:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;67659:507;;;;:::i;:::-;67824:60;;;67836:48;67824:60;67820:157;;67916:41;;;;;;;;;;;;;;61493:1784;61599:18;;;61596:77;;61640:21;;;;;;;;;;;;;;61596:77;44739:13;;663:10;;61777:24;61818:6;61804:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61804:21:0;;61777:48;;61836:20;61873:6;61859:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61859:21:0;;61836:44;;61922:9;61918:258;61941:6;61937:1;:10;61918:258;;;61986:1;61973:7;61981:1;61973:10;;;;;;;;:::i;:::-;;;;;;;;;;;:14;;;;62019:12;;;62006:10;62019:12;;;:6;:12;;;;;;:36;;62044:10;62019:24;:36::i;:::-;62006:49;;62083:2;62074:3;62078:1;62074:6;;;;;;;;:::i;:::-;;;;;;;;;;;:11;;;;62104:12;;;;;;;:6;:12;;;;;;;34692:1;34683:10;;;34672:22;;;;;;;;:48;;34714:4;34706:12;;34700:19;;;34698:22;34672:48;;;34683:10;;-1:-1:-1;61949:3:0;61918:258;;;;62327:18;;62370:10;:6;62379:1;62370:10;:::i;:::-;62356:24;;62441:16;62435:4;62431:27;62417:41;;62643:4;62638:3;62634:14;62628:21;62608:1;62579:10;62535:25;62515:1;62495;62472:192;62718:1;62680:264;62754:3;62745:7;62742:16;62680:264;;62918:7;62912:4;62908:18;62903:3;62899:28;62893:35;62890:1;62878:10;62851:25;62848:1;62845;62840:89;62803:1;62790:15;62680:264;;;-1:-1:-1;63215:52:0;63235:8;63245:4;63259:1;63263:3;63215:19;:52::i;56682:1695::-;56787:20;;56851:16;;;56848:74;;56891:19;;;;;;;;;;;;;;56848:74;56935:6;56945:1;56935:11;56932:68;;56970:18;;;;;;;;;;;;;;56932:68;663:10;57076:6;57062:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57062:21:0;;57056:27;;57118:6;57104:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57104:21:0;;57094:31;;57136:20;57159:14;44739:13;;;44665:95;57159:14;57136:37;;57249:12;57239:6;57219:17;:26;:42;;57211:51;;;;;;57281:9;57277:129;57300:6;57296:1;:10;57277:129;;;57356:1;57341:12;:16;57332:3;57336:1;57332:6;;;;;;;;:::i;:::-;;;;;;:25;;;;;57389:1;57376:7;57384:1;57376:10;;;;;;;;:::i;:::-;;;;;;;;;;:14;57308:3;;57277:129;;;;57501:10;;;;;;;:6;:10;;;;;:41;;57521:12;57535:6;57501:19;:41::i;:::-;57570:6;57553:13;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;57589:16:0;;-1:-1:-1;57589:16:0;57630:21;57645:6;57630:12;:21;:::i;:::-;57616:35;;57708:16;57704:2;57700:25;57688:37;;57893:12;57866:8;57846:1;57802:25;57782:1;57762;57739:181;57992:1;57978:12;57974:20;57936:253;58029:3;58020:7;58017:16;57936:253;;58166:7;58156:8;58153:1;58126:25;58123:1;58120;58115:59;58078:1;58065:15;57936:253;;;-1:-1:-1;58317:50:0;58337:8;58355:1;58359:2;58363:3;58317:19;:50::i;:::-;56835:1542;;;;56682:1695;;;;;:::o;39883:1230::-;40201:1;40197:14;;;39993:19;40225:20;;;40266:4;40259:25;;;40439:4;40423:21;;40417:28;40167:6;;40197:14;40316:4;40322:11;;40312:22;40405:41;;;40393:54;;40486:14;;40471:30;;40461:356;;40522:280;-1:-1:-1;40567:24:0;;40641:4;40634:20;;;40712:4;40696:21;;40690:28;40758:14;;40743:30;;40740:43;40522:280;40740:43;40522:280;40842:15;;40838:268;;40904:22;40915:10;25904:66;25828:4;25849:34;25454:9;;25451:1;25447:17;25476:34;25473:41;-1:-1:-1;25470:1:0;25466:49;25444:72;25571:9;;;25551:18;25548:33;25545:1;25541:41;25535:48;25630:9;;;25618:10;25615:25;25612:1;25608:33;25602:40;25685:9;;;25677:6;25674:21;25671:1;25667:29;25661:36;25738:9;;;25732:4;25729:19;25726:1;25722:27;25716:34;25838:9;;;25834:50;25824:61;25819:152;25813:159;;25302:688;40904:22;40899:1;40889:11;;;40888:38;41055:23;;;41052:1;41048:31;41032:48;;-1:-1:-1;40838:268:0;40019:1094;;39883:1230;;;;:::o;36436:1129::-;36611:1;36607:6;36651:4;36644:5;36640:16;36683:11;36677:4;36670:25;36729:5;36726:1;36722:13;36716:4;36709:27;36783:3;36774:6;36767:5;36763:18;36760:27;36750:646;;36837:4;36827:21;;36843:4;36827:21;;36889:18;;36909:15;;;36886:39;36866:60;;37036:18;;;;37108:4;37084:29;;;-1:-1:-1;36958:19:0;;;37033:1;37029:26;37012:44;37159:184;37184:9;37176:6;37173:21;37159:184;;37261:6;37255:4;37248:20;37320:3;37313:4;37307;37297:21;37290:34;37220:1;37212:6;37208:14;37198:24;;37159:184;;;-1:-1:-1;37368:4:0;37361:20;36750:646;37445:4;37439;37429:21;37540:3;37531:6;37526:3;37522:16;37518:26;37511:5;37507:38;37493:11;37487:18;37484:62;37471:11;37464:83;;;;36436:1129;;;:::o;14:196:1:-;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;215:254;283:6;291;344:2;332:9;323:7;319:23;315:32;312:52;;;360:1;357;350:12;312:52;383:29;402:9;383:29;:::i;:::-;373:39;459:2;444:18;;;;431:32;;-1:-1:-1;;;215:254:1:o;656:177::-;741:66;734:5;730:78;723:5;720:89;710:117;;823:1;820;813:12;838:245;896:6;949:2;937:9;928:7;924:23;920:32;917:52;;;965:1;962;955:12;917:52;1004:9;991:23;1023:30;1047:5;1023:30;:::i;1280:184::-;1332:77;1329:1;1322:88;1429:4;1426:1;1419:15;1453:4;1450:1;1443:15;1469:308;1575:66;1570:2;1564:4;1560:13;1556:86;1548:6;1544:99;1709:6;1697:10;1694:22;1673:18;1661:10;1658:34;1655:62;1652:88;;;1720:18;;:::i;:::-;1756:2;1749:22;-1:-1:-1;;1469:308:1:o;1782:528::-;1847:5;1881:18;1873:6;1870:30;1867:56;;;1903:18;;:::i;:::-;1952:2;1946:9;1964:128;2086:4;2017:66;2012:2;2004:6;2000:15;1996:88;1992:99;1984:6;1964:128;:::i;:::-;2110:6;2101:15;;2140:6;2132;2125:22;2180:3;2171:6;2166:3;2162:16;2159:25;2156:45;;;2197:1;2194;2187:12;2156:45;2247:6;2242:3;2235:4;2227:6;2223:17;2210:44;2302:1;2295:4;2286:6;2278;2274:19;2270:30;2263:41;;1782:528;;;;;:::o;2315:451::-;2384:6;2437:2;2425:9;2416:7;2412:23;2408:32;2405:52;;;2453:1;2450;2443:12;2405:52;2493:9;2480:23;2526:18;2518:6;2515:30;2512:50;;;2558:1;2555;2548:12;2512:50;2581:22;;2634:4;2626:13;;2622:27;-1:-1:-1;2612:55:1;;2663:1;2660;2653:12;2612:55;2686:74;2752:7;2747:2;2734:16;2729:2;2725;2721:11;2686:74;:::i;2771:250::-;2856:1;2866:113;2880:6;2877:1;2874:13;2866:113;;;2956:11;;;2950:18;2937:11;;;2930:39;2902:2;2895:10;2866:113;;;-1:-1:-1;;3013:1:1;2995:16;;2988:27;2771:250::o;3026:341::-;3079:3;3117:5;3111:12;3144:6;3139:3;3132:19;3160:76;3229:6;3222:4;3217:3;3213:14;3206:4;3199:5;3195:16;3160:76;:::i;:::-;3281:2;3269:15;3286:66;3265:88;3256:98;;;;3356:4;3252:109;;3026:341;-1:-1:-1;;3026:341:1:o;3372:231::-;3521:2;3510:9;3503:21;3484:4;3541:56;3593:2;3582:9;3578:18;3570:6;3541:56;:::i;3608:180::-;3667:6;3720:2;3708:9;3699:7;3695:23;3691:32;3688:52;;;3736:1;3733;3726:12;3688:52;-1:-1:-1;3759:23:1;;3608:180;-1:-1:-1;3608:180:1:o;4024:328::-;4101:6;4109;4117;4170:2;4158:9;4149:7;4145:23;4141:32;4138:52;;;4186:1;4183;4176:12;4138:52;4209:29;4228:9;4209:29;:::i;:::-;4199:39;;4257:38;4291:2;4280:9;4276:18;4257:38;:::i;:::-;4247:48;;4342:2;4331:9;4327:18;4314:32;4304:42;;4024:328;;;;;:::o;4357:322::-;4434:6;4442;4450;4503:2;4491:9;4482:7;4478:23;4474:32;4471:52;;;4519:1;4516;4509:12;4471:52;4542:29;4561:9;4542:29;:::i;:::-;4532:39;4618:2;4603:18;;4590:32;;-1:-1:-1;4669:2:1;4654:18;;;4641:32;;4357:322;-1:-1:-1;;;4357:322:1:o;4684:183::-;4744:4;4777:18;4769:6;4766:30;4763:56;;;4799:18;;:::i;:::-;-1:-1:-1;4844:1:1;4840:14;4856:4;4836:25;;4684:183::o;4872:730::-;4926:5;4979:3;4972:4;4964:6;4960:17;4956:27;4946:55;;4997:1;4994;4987:12;4946:55;5033:6;5020:20;5059:4;5082:43;5122:2;5082:43;:::i;:::-;5154:2;5148:9;5166:31;5194:2;5186:6;5166:31;:::i;:::-;5217:6;5206:17;;5247:2;5239:6;5232:18;5278:4;5270:6;5266:17;5259:24;;5335:4;5329:2;5326:1;5322:10;5314:6;5310:23;5306:34;5292:48;;5363:3;5355:6;5352:15;5349:35;;;5380:1;5377;5370:12;5349:35;5416:4;5408:6;5404:17;5430:142;5446:6;5441:3;5438:15;5430:142;;;5512:17;;5500:30;;5550:12;;;;5463;;5430:142;;;-1:-1:-1;5590:6:1;4872:730;-1:-1:-1;;;;;;4872:730:1:o;5607:221::-;5649:5;5702:3;5695:4;5687:6;5683:17;5679:27;5669:55;;5720:1;5717;5710:12;5669:55;5742:80;5818:3;5809:6;5796:20;5789:4;5781:6;5777:17;5742:80;:::i;5833:943::-;5987:6;5995;6003;6011;6019;6072:3;6060:9;6051:7;6047:23;6043:33;6040:53;;;6089:1;6086;6079:12;6040:53;6112:29;6131:9;6112:29;:::i;:::-;6102:39;;6160:38;6194:2;6183:9;6179:18;6160:38;:::i;:::-;6150:48;;6249:2;6238:9;6234:18;6221:32;6272:18;6313:2;6305:6;6302:14;6299:34;;;6329:1;6326;6319:12;6299:34;6352:61;6405:7;6396:6;6385:9;6381:22;6352:61;:::i;:::-;6342:71;;6466:2;6455:9;6451:18;6438:32;6422:48;;6495:2;6485:8;6482:16;6479:36;;;6511:1;6508;6501:12;6479:36;6534:63;6589:7;6578:8;6567:9;6563:24;6534:63;:::i;:::-;6524:73;;6650:3;6639:9;6635:19;6622:33;6606:49;;6680:2;6670:8;6667:16;6664:36;;;6696:1;6693;6686:12;6664:36;;6719:51;6762:7;6751:8;6740:9;6736:24;6719:51;:::i;:::-;6709:61;;;5833:943;;;;;;;;:::o;6970:1208::-;7088:6;7096;7149:2;7137:9;7128:7;7124:23;7120:32;7117:52;;;7165:1;7162;7155:12;7117:52;7205:9;7192:23;7234:18;7275:2;7267:6;7264:14;7261:34;;;7291:1;7288;7281:12;7261:34;7329:6;7318:9;7314:22;7304:32;;7374:7;7367:4;7363:2;7359:13;7355:27;7345:55;;7396:1;7393;7386:12;7345:55;7432:2;7419:16;7454:4;7477:43;7517:2;7477:43;:::i;:::-;7549:2;7543:9;7561:31;7589:2;7581:6;7561:31;:::i;:::-;7627:18;;;7715:1;7711:10;;;;7703:19;;7699:28;;;7661:15;;;;-1:-1:-1;7739:19:1;;;7736:39;;;7771:1;7768;7761:12;7736:39;7795:11;;;;7815:148;7831:6;7826:3;7823:15;7815:148;;;7897:23;7916:3;7897:23;:::i;:::-;7885:36;;7848:12;;;;7941;;;;7815:148;;;7982:6;-1:-1:-1;;8026:18:1;;8013:32;;-1:-1:-1;;8057:16:1;;;8054:36;;;8086:1;8083;8076:12;8054:36;;8109:63;8164:7;8153:8;8142:9;8138:24;8109:63;:::i;:::-;8099:73;;;6970:1208;;;;;:::o;8183:439::-;8236:3;8274:5;8268:12;8301:6;8296:3;8289:19;8327:4;8356;8351:3;8347:14;8340:21;;8395:4;8388:5;8384:16;8418:1;8428:169;8442:6;8439:1;8436:13;8428:169;;;8503:13;;8491:26;;8537:12;;;;8572:15;;;;8464:1;8457:9;8428:169;;;-1:-1:-1;8613:3:1;;8183:439;-1:-1:-1;;;;;8183:439:1:o;8627:261::-;8806:2;8795:9;8788:21;8769:4;8826:56;8878:2;8867:9;8863:18;8855:6;8826:56;:::i;8893:118::-;8979:5;8972:13;8965:21;8958:5;8955:32;8945:60;;9001:1;8998;8991:12;9016:315;9081:6;9089;9142:2;9130:9;9121:7;9117:23;9113:32;9110:52;;;9158:1;9155;9148:12;9110:52;9181:29;9200:9;9181:29;:::i;:::-;9171:39;;9260:2;9249:9;9245:18;9232:32;9273:28;9295:5;9273:28;:::i;:::-;9320:5;9310:15;;;9016:315;;;;;:::o;9336:186::-;9395:6;9448:2;9436:9;9427:7;9423:23;9419:32;9416:52;;;9464:1;9461;9454:12;9416:52;9487:29;9506:9;9487:29;:::i;9709:260::-;9777:6;9785;9838:2;9826:9;9817:7;9813:23;9809:32;9806:52;;;9854:1;9851;9844:12;9806:52;9877:29;9896:9;9877:29;:::i;:::-;9867:39;;9925:38;9959:2;9948:9;9944:18;9925:38;:::i;:::-;9915:48;;9709:260;;;;;:::o;9974:606::-;10078:6;10086;10094;10102;10110;10163:3;10151:9;10142:7;10138:23;10134:33;10131:53;;;10180:1;10177;10170:12;10131:53;10203:29;10222:9;10203:29;:::i;:::-;10193:39;;10251:38;10285:2;10274:9;10270:18;10251:38;:::i;:::-;10241:48;;10336:2;10325:9;10321:18;10308:32;10298:42;;10387:2;10376:9;10372:18;10359:32;10349:42;;10442:3;10431:9;10427:19;10414:33;10470:18;10462:6;10459:30;10456:50;;;10502:1;10499;10492:12;10456:50;10525:49;10566:7;10557:6;10546:9;10542:22;10525:49;:::i;10585:437::-;10664:1;10660:12;;;;10707;;;10728:61;;10782:4;10774:6;10770:17;10760:27;;10728:61;10835:2;10827:6;10824:14;10804:18;10801:38;10798:218;;10872:77;10869:1;10862:88;10973:4;10970:1;10963:15;11001:4;10998:1;10991:15;10798:218;;10585:437;;;:::o;11364:184::-;11416:77;11413:1;11406:88;11513:4;11510:1;11503:15;11537:4;11534:1;11527:15;11553:128;11620:9;;;11641:11;;;11638:37;;;11655:18;;:::i;12129:518::-;12231:2;12226:3;12223:11;12220:421;;;12267:5;12264:1;12257:16;12311:4;12308:1;12298:18;12381:2;12369:10;12365:19;12362:1;12358:27;12352:4;12348:38;12417:4;12405:10;12402:20;12399:47;;;-1:-1:-1;12440:4:1;12399:47;12495:2;12490:3;12486:12;12483:1;12479:20;12473:4;12469:31;12459:41;;12550:81;12568:2;12561:5;12558:13;12550:81;;;12627:1;12613:16;;12594:1;12583:13;12550:81;;12883:1464;13009:3;13003:10;13036:18;13028:6;13025:30;13022:56;;;13058:18;;:::i;:::-;13087:97;13177:6;13137:38;13169:4;13163:11;13137:38;:::i;:::-;13131:4;13087:97;:::i;:::-;13239:4;;13296:2;13285:14;;13313:1;13308:782;;;;14134:1;14151:6;14148:89;;;-1:-1:-1;14203:19:1;;;14197:26;14148:89;12789:66;12780:1;12776:11;;;12772:84;12768:89;12758:100;12864:1;12860:11;;;12755:117;14250:81;;13278:1063;;13308:782;12076:1;12069:14;;;12113:4;12100:18;;13356:66;13344:79;;;13521:236;13535:7;13532:1;13529:14;13521:236;;;13624:19;;;13618:26;13603:42;;13716:27;;;;13684:1;13672:14;;;;13551:19;;13521:236;;;13525:3;13785:6;13776:7;13773:19;13770:261;;;13846:19;;;13840:26;13947:66;13929:1;13925:14;;;13941:3;13921:24;13917:97;13913:102;13898:118;13883:134;;13770:261;-1:-1:-1;;;;;14077:1:1;14061:14;;;14057:22;14044:36;;-1:-1:-1;12883:1464:1:o;14352:184::-;14404:77;14401:1;14394:88;14501:4;14498:1;14491:15;14525:4;14522:1;14515:15;14541:168;14614:9;;;14645;;14662:15;;;14656:22;;14642:37;14632:71;;14683:18;;:::i;14714:184::-;14766:77;14763:1;14756:88;14863:4;14860:1;14853:15;14887:4;14884:1;14877:15;14903:120;14943:1;14969;14959:35;;14974:18;;:::i;:::-;-1:-1:-1;15008:9:1;;14903:120::o;15373:125::-;15438:9;;;15459:10;;;15456:36;;;15472:18;;:::i;16570:198::-;16612:3;16650:5;16644:12;16665:65;16723:6;16718:3;16711:4;16704:5;16700:16;16665:65;:::i;:::-;16746:16;;;;;16570:198;-1:-1:-1;;16570:198:1:o;16773:1079::-;16949:3;16978:1;17011:6;17005:13;17041:36;17067:9;17041:36;:::i;:::-;17096:1;17113:17;;;17139:191;;;;17344:1;17339:358;;;;17106:591;;17139:191;17187:66;17176:9;17172:82;17167:3;17160:95;17310:6;17303:14;17296:22;17288:6;17284:35;17279:3;17275:45;17268:52;;17139:191;;17339:358;17370:6;17367:1;17360:17;17400:4;17445;17442:1;17432:18;17472:1;17486:165;17500:6;17497:1;17494:13;17486:165;;;17578:14;;17565:11;;;17558:35;17621:16;;;;17515:10;;17486:165;;;17490:3;;;17680:6;17675:3;17671:16;17664:23;;17106:591;;;;;17728:6;17722:13;17744:68;17803:8;17798:3;17791:4;17783:6;17779:17;17744:68;:::i;:::-;17828:18;;16773:1079;-1:-1:-1;;;;16773:1079:1:o;18601:2236::-;19656:66;19651:3;19644:79;19626:3;19752:6;19746:13;19768:75;19836:6;19831:2;19826:3;19822:12;19815:4;19807:6;19803:17;19768:75;:::i;:::-;19907:9;19902:2;19862:16;;;19894:11;;;19887:30;19942:13;;19964:76;19942:13;20026:2;20018:11;;20011:4;19999:17;;19964:76;:::i;:::-;20105:66;20100:2;20059:17;;;;20092:11;;;20085:87;20197:13;;20219:76;20197:13;20281:2;20273:11;;20266:4;20254:17;;20219:76;:::i;:::-;20360:66;20355:2;20314:17;;;;20347:11;;;20340:87;20456:66;20451:2;20443:11;;20436:87;20548:13;;20570:76;20548:13;20632:2;20624:11;;20617:4;20605:17;;20570:76;:::i;:::-;20662:169;20692:138;20718:111;20744:84;20774:53;20823:2;20812:8;20808:2;20804:17;20800:26;20792:6;20774:53;:::i;:::-;18373:66;18361:79;;18465:2;18456:12;;18296:178;20744:84;20736:6;20718:111;:::i;:::-;20710:6;20692:138;:::i;:::-;18556:6;18544:19;;18588:1;18579:11;;18479:117;20662:169;20655:176;18601:2236;-1:-1:-1;;;;;;;;;;;18601:2236:1:o;20842:1177::-;21354:29;21349:3;21342:42;21324:3;21413:6;21407:13;21429:75;21497:6;21492:2;21487:3;21483:12;21476:4;21468:6;21464:17;21429:75;:::i;:::-;21568:66;21563:2;21523:16;;;21555:11;;;21548:87;21664:66;21659:2;21651:11;;21644:87;21756:13;;21778:76;21756:13;21840:2;21832:11;;21825:4;21813:17;;21778:76;:::i;:::-;21919:66;21914:2;21873:17;;;;21906:11;;;21899:87;22010:2;22002:11;;20842:1177;-1:-1:-1;;;;20842:1177:1:o;23530:195::-;23569:3;23600:66;23593:5;23590:77;23587:103;;23670:18;;:::i;:::-;-1:-1:-1;23717:1:1;23706:13;;23530:195::o;23730:112::-;23762:1;23788;23778:35;;23793:18;;:::i;:::-;-1:-1:-1;23827:9:1;;23730:112::o;25271:245::-;25338:6;25391:2;25379:9;25370:7;25366:23;25362:32;25359:52;;;25407:1;25404;25397:12;25359:52;25439:9;25433:16;25458:28;25480:5;25458:28;:::i;25521:595::-;25743:4;25772:42;25853:2;25845:6;25841:15;25830:9;25823:34;25905:2;25897:6;25893:15;25888:2;25877:9;25873:18;25866:43;;25945:6;25940:2;25929:9;25925:18;25918:34;25988:6;25983:2;25972:9;25968:18;25961:34;26032:3;26026;26015:9;26011:19;26004:32;26053:57;26105:3;26094:9;26090:19;26082:6;26053:57;:::i;:::-;26045:65;25521:595;-1:-1:-1;;;;;;;25521:595:1:o;26121:249::-;26190:6;26243:2;26231:9;26222:7;26218:23;26214:32;26211:52;;;26259:1;26256;26249:12;26211:52;26291:9;26285:16;26310:30;26334:5;26310:30;:::i;26375:179::-;26410:3;26452:1;26434:16;26431:23;26428:120;;;26498:1;26495;26492;26477:23;-1:-1:-1;26535:1:1;26529:8;26524:3;26520:18;26428:120;26375:179;:::o;26559:731::-;26598:3;26640:4;26622:16;26619:26;26616:39;;;26559:731;:::o;26616:39::-;26682:2;26676:9;26704:66;26825:2;26807:16;26803:25;26800:1;26794:4;26779:50;26858:4;26852:11;26882:16;26917:18;26988:2;26981:4;26973:6;26969:17;26966:25;26961:2;26953:6;26950:14;26947:45;26944:58;;;26995:5;;;;;26559:731;:::o;26944:58::-;27032:6;27026:4;27022:17;27011:28;;27068:3;27062:10;27095:2;27087:6;27084:14;27081:27;;;27101:5;;;;;;26559:731;:::o;27081:27::-;27185:2;27166:16;27160:4;27156:27;27152:36;27145:4;27136:6;27131:3;27127:16;27123:27;27120:69;27117:82;;;27192:5;;;;;;26559:731;:::o;27117:82::-;27208:57;27259:4;27250:6;27242;27238:19;27234:30;27228:4;27208:57;:::i;:::-;-1:-1:-1;27281:3:1;;26559:731;-1:-1:-1;;;;;26559:731:1:o;27295:523::-;27489:4;27518:42;27599:2;27591:6;27587:15;27576:9;27569:34;27651:2;27643:6;27639:15;27634:2;27623:9;27619:18;27612:43;;27691:6;27686:2;27675:9;27671:18;27664:34;27734:3;27729:2;27718:9;27714:18;27707:31;27755:57;27807:3;27796:9;27792:19;27784:6;27755:57;:::i;:::-;27747:65;27295:523;-1:-1:-1;;;;;;27295:523:1:o;27823:861::-;28145:4;28174:42;28255:2;28247:6;28243:15;28232:9;28225:34;28307:2;28299:6;28295:15;28290:2;28279:9;28275:18;28268:43;;28347:3;28342:2;28331:9;28327:18;28320:31;28374:57;28426:3;28415:9;28411:19;28403:6;28374:57;:::i;:::-;28479:9;28471:6;28467:22;28462:2;28451:9;28447:18;28440:50;28513:44;28550:6;28542;28513:44;:::i;:::-;28499:58;;28606:9;28598:6;28594:22;28588:3;28577:9;28573:19;28566:51;28634:44;28671:6;28663;28634:44;:::i;:::-;28626:52;27823:861;-1:-1:-1;;;;;;;;27823:861:1:o

Swarm Source

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