ETH Price: $3,423.94 (-1.48%)
Gas: 6 Gwei

Token

Crypto Cannabis Club Brand Collectable Edition 3 (Ganj)
 

Overview

Max Total Supply

532 Ganj

Holders

412

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jingojango.eth
Balance
1 Ganj
0x3d5660e507c6028bd2ee8aECA0b829CB54e77498
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:
GanjiBrandCollectable

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 1 : GanjiBrandCollectable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts
// Tokenfy Contracts

//  _____                      _           _____                              _      _        _____  _         _      ______                         _   _____         _  _              _          _      _         _____     _  _  _    _                 _____ 
// /  __ \                    | |         /  __ \                            | |    (_)      /  __ \| |       | |     | ___ \                       | | /  __ \       | || |            | |        | |    | |       |  ___|   | |(_)| |  (_)               |____ |
// | /  \/ _ __  _   _  _ __  | |_  ___   | /  \/  __ _  _ __   _ __    __ _ | |__   _  ___  | /  \/| | _   _ | |__   | |_/ / _ __  __ _  _ __    __| | | /  \/  ___  | || |  ___   ___ | |_  __ _ | |__  | |  ___  | |__   __| | _ | |_  _   ___   _ __       / /
// | |    | '__|| | | || '_ \ | __|/ _ \  | |     / _` || '_ \ | '_ \  / _` || '_ \ | |/ __| | |    | || | | || '_ \  | ___ \| '__|/ _` || '_ \  / _` | | |     / _ \ | || | / _ \ / __|| __|/ _` || '_ \ | | / _ \ |  __| / _` || || __|| | / _ \ | '_ \      \ \
// | \__/\| |   | |_| || |_) || |_| (_) | | \__/\| (_| || | | || | | || (_| || |_) || |\__ \ | \__/\| || |_| || |_) | | |_/ /| |  | (_| || | | || (_| | | \__/\| (_) || || ||  __/| (__ | |_| (_| || |_) || ||  __/ | |___| (_| || || |_ | || (_) || | | | .___/ /
//  \____/|_|    \__, || .__/  \__|\___/   \____/ \__,_||_| |_||_| |_| \__,_||_.__/ |_||___/  \____/|_| \__,_||_.__/  \____/ |_|   \__,_||_| |_| \__,_|  \____/ \___/ |_||_| \___| \___| \__|\__,_||_.__/ |_| \___| \____/ \__,_||_| \__||_| \___/ |_| |_| \____/ 
//                __/ || |                                                                                                                                                                                                                                        
//               |___/ |_|                                                                                                                                                                                                                                        

pragma solidity 0.8.11;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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 Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

library SafeERC20 {
    using Address for address;

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

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

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

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

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

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

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

contract GanjiBrandCollectable is ERC721, Ownable, ReentrancyGuard {
    using ECDSA for bytes32;
	using Strings for uint256;
    using SafeERC20 for IERC20;

    uint256 private _currentIndex = 0;
    uint256 private _totalBurned = 0;

	string private _baseTokenURI = "https://metadata.api.tokenfy.com/19/metadata/";
	string private _contractURI = "https://tokenfy-production-public.s3.us-east-2.amazonaws.com/19/contract-uri";

    address public tokenfyAddress = 0xa6dD98031551C23bb4A2fBE2C4d524e8f737c6f7;

    // sale currency settings
    bool public ethEnabled = true;
    bool public tokenfyEnabled = false;
    
 	// mint settings
	uint256 public maxSupply = 2000;
	uint256 public maxPerMint = 10;
	uint256 public pricePerToken = 20000000000000000;
    uint256 public tokenfyPrice = 0;

    // presale settings
    address private signerAddress;
    mapping(address => uint256) public presaleMinted;
	uint256 public presaleMaxSupply = 250;
	uint256 public presaleMaxPerMint = 1;
	uint256 public presalePricePerToken = 0;
    uint256 public tokenfyPresalePrice = 0;

 	// activation flags
	bool public instantRevealActive = false;
    bool public presaleLive = false;
	bool public saleLive = false;
	bool public burnLive = false;

    modifier presaleValid(bytes32 hash, bytes memory sig, uint256 qty, uint256 max, uint256 expiresAt) {
        require(presaleLive, "Presale not live");
        require(matchAddresSigner(hash, sig), "Invalid signer");
		require(hashTransaction(msg.sender, qty, max, expiresAt) == hash, "Hash check failed");
        require(expiresAt >= block.timestamp, "Signature is expired");
		require(qty <= presaleMaxPerMint, "Max per mint exceeded");
        require(presaleMinted[msg.sender] + qty <= max, "Max per wallet exceeded");
		require(_currentIndex + qty <= presaleMaxSupply, "Exceeds max supply");
        _;
    }

    modifier saleValid(uint256 qty) {
        require(saleLive, "Sale not live");
		require(qty <= maxPerMint, "Max per mint exceeded");
		require(_currentIndex + qty <= maxSupply, "Exceeds max supply");
        _;
    }    

	constructor(address _signerAddress) ERC721("Crypto Cannabis Club Brand Collectable Edition 3", "Ganj") {
		signerAddress = _signerAddress;
	}

    function presaleMint(
        bytes32 hash,
        bytes memory sig,
        uint256 qty,
        uint256 max,
        uint256 expiresAt
    ) external payable nonReentrant presaleValid(hash, sig, qty, max, expiresAt) {
        require(ethEnabled, "ETH not enabled");
		require(presalePricePerToken * qty == msg.value, "Incorrect price");
        
        presaleMinted[msg.sender] += qty;

		for (uint256 i = 0; i < qty; i++) {
			mintToken(msg.sender);
		}
    }

    function presaleMintTokenfy(
        bytes32 hash, 
        bytes memory sig, 
        uint256 qty, 
        uint256 max,
        uint256 expiresAt,
        uint256 value
    ) external nonReentrant presaleValid(hash, sig, qty, max, expiresAt) {
        require(tokenfyEnabled, "TKNFY not enabled");
		require(tokenfyPresalePrice * qty == value, "Incorrect price");

        IERC20(tokenfyAddress).safeTransferFrom(msg.sender, address(this), value);

        presaleMinted[msg.sender] += qty;

		for (uint256 i = 0; i < qty; i++) {
			mintToken(msg.sender);
		}
    }

	function mint(uint256 qty) external payable nonReentrant saleValid(qty) {
        require(ethEnabled, "ETH not enabled");
		require(pricePerToken * qty == msg.value, "Incorrect price");

		for (uint256 i = 0; i < qty; i++) {
            mintToken(msg.sender);
		}
	}

    function mintTokenfy(uint256 qty, uint256 value) external nonReentrant saleValid(qty) {
        require(tokenfyEnabled, "TKNFY not enabled");
		require(tokenfyPrice * qty == value, "Incorrect price");

        IERC20(tokenfyAddress).safeTransferFrom(msg.sender, address(this), value);

		for (uint256 i = 0; i < qty; i++) {
            mintToken(msg.sender);
		}
	}

	function adminMint(uint256 qty, address to) public onlyOwner {
		require(qty > 0, "Must mint at least 1 token");
		require(_currentIndex + qty <= maxSupply, "Exceeds max supply");
		for (uint256 i = 0; i < qty; i++) {
			mintToken(to);
		}
	}

    function mintToken(address receiver) private {
        _currentIndex += 1;
        _safeMint(receiver, _currentIndex);
    }

    function hashTransaction(address sender, uint256 qty, uint256 max, uint256 expiresAt) private pure returns (bytes32) {
		bytes32 hash = keccak256(
			abi.encodePacked("\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(sender, qty, max, expiresAt)))
		);
		return hash;
	}

	function matchAddresSigner(bytes32 hash, bytes memory signature) private view returns (bool) {
		return signerAddress == hash.recover(signature);
	}

	function burn(uint256 tokenId) public nonReentrant {
	    require(burnLive, "Burn not live");
		require(_isApprovedOrOwner(_msgSender(), tokenId), "Caller is not owner nor approved");
        _totalBurned += 1;
		_burn(tokenId);
	}

    function totalSupply() public view virtual returns (uint256) {
        return _currentIndex - _totalBurned;
    }

	function exists(uint256 _tokenId) external view returns (bool) {
		return _exists(_tokenId);
	}

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

	function setBaseURI(string memory newBaseURI) public onlyOwner {
		_baseTokenURI = newBaseURI;
	}

	function setContractURI(string memory newuri) public onlyOwner {
		_contractURI = newuri;
	}

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

	// withdrawing earnings
	function withdrawEarnings() public onlyOwner {
        uint256 balance = address(this).balance;
		payable(msg.sender).transfer(balance);
	}

    // reclaiming tokens
	function reclaimERC20(IERC20 erc20Token, address to) public onlyOwner {
		erc20Token.safeTransfer(to, erc20Token.balanceOf(address(this)));
	}

	function reclaimERC1155(IERC1155 erc1155Token, uint256 id, address to) public onlyOwner {
        erc1155Token.safeTransferFrom(address(this), to, id, 1, "");
    }

    function reclaimERC721(IERC721 erc721Token, uint256 id, address to) public onlyOwner {
        erc721Token.safeTransferFrom(address(this), to, id);
    }

    // activating contact events
    function setPresaleLive(bool live) external onlyOwner {
		presaleLive = live;
	}

	function setSaleLive(bool live) external onlyOwner {
		saleLive = live;
	}

	function setBurnLive(bool live) external onlyOwner {
		burnLive = live;
	}

	function setInstantReveal(bool reveal) external onlyOwner {
		instantRevealActive = reveal;
	}

    // mint-related settings
	function changePrice(uint256 newPrice) external onlyOwner {
		pricePerToken = newPrice;
	}

    function changeTokenfyPrice(uint256 newPrice) external onlyOwner {
		tokenfyPrice = newPrice;
	}

	function changeMaxSupply(uint256 _maxSupply) external onlyOwner {
		require(_maxSupply >= _currentIndex, "Must be larger than minted count");
		maxSupply = _maxSupply;
	}

	function setMaxPerMint(uint256 _maxPerMint) external onlyOwner {
	    require(_maxPerMint > 0, "Invalid max per mint");
		maxPerMint = _maxPerMint;
	}

    // presale-related settings
    function changePresalePrice(uint256 newPrice) external onlyOwner {
		presalePricePerToken = newPrice;
	}

    function changeTokenfyPresalePrice(uint256 newPrice) external onlyOwner {
		tokenfyPresalePrice = newPrice;
	}

	function changePresaleMaxSupply(uint256 _maxSupply) external onlyOwner {
		require(_maxSupply >= _currentIndex, "Must be larger than minted count");
        require(_maxSupply <= maxSupply, "Must be less than max supply");
		presaleMaxSupply = _maxSupply;
	}

	function setPresaleMaxPerMint(uint256 _maxPerMint) external onlyOwner {
	    require(_maxPerMint > 0, "Must be > 0");
		presaleMaxPerMint = _maxPerMint;
	}

    function setSignerAddress(address _signer) external onlyOwner {
        signerAddress = _signer;
    }

    function setETHEnabled(bool enabled) external onlyOwner {
        ethEnabled = enabled;
    }

    function setTokenfyEnabled(bool enabled) external onlyOwner {
        tokenfyEnabled = enabled;
    }
}

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"changeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"changePresaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changeTokenfyPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changeTokenfyPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"instantRevealActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mintTokenfy","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"sig","type":"bytes"},{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"uint256","name":"expiresAt","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"sig","type":"bytes"},{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"uint256","name":"expiresAt","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"presaleMintTokenfy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePricePerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC1155","name":"erc1155Token","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"reclaimERC1155","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"erc20Token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"reclaimERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC721","name":"erc721Token","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"reclaimERC721","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"live","type":"bool"}],"name":"setBurnLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setETHEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"reveal","type":"bool"}],"name":"setInstantReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerMint","type":"uint256"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"live","type":"bool"}],"name":"setPresaleLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerMint","type":"uint256"}],"name":"setPresaleMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"live","type":"bool"}],"name":"setSaleLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setTokenfyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenfyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenfyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenfyPresalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenfyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEarnings","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600881905560095560e0604052602d60808181529062003f9f60a03980516200003391600a91602090910190620001fb565b506040518060800160405280604c815260200162003f53604c913980516200006491600b91602090910190620001fb565b50600c80546001600160b01b0319167401a6dd98031551c23bb4a2fbe2c4d524e8f737c6f71790556107d0600d55600a600e5566470de4df820000600f556000601081905560fa601355600160145560158190556016556017805463ffffffff19169055348015620000d557600080fd5b5060405162003fcc38038062003fcc833981016040819052620000f891620002a1565b60405180606001604052806030815260200162003f23603091396040518060400160405280600481526020016323b0b73560e11b815250816000908051906020019062000147929190620001fb565b5080516200015d906001906020840190620001fb565b5050506200017a62000174620001a560201b60201c565b620001a9565b6001600755601180546001600160a01b0319166001600160a01b039290921691909117905562000310565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200020990620002d3565b90600052602060002090601f0160209004810192826200022d576000855562000278565b82601f106200024857805160ff191683800117855562000278565b8280016001018555821562000278579182015b82811115620002785782518255916020019190600101906200025b565b50620002869291506200028a565b5090565b5b808211156200028657600081556001016200028b565b600060208284031215620002b457600080fd5b81516001600160a01b0381168114620002cc57600080fd5b9392505050565b600181811c90821680620002e857607f821691505b602082108114156200030a57634e487b7160e01b600052602260045260246000fd5b50919050565b613c0380620003206000396000f3fe6080604052600436106103ad5760003560e01c806378b2109b116101e7578063b88d4fde1161010d578063db6242c3116100a0578063e97eb0a21161006f578063e97eb0a214610a97578063e985e9c514610ab7578063f2fde38b14610b00578063f9d594f514610b2057600080fd5b8063db6242c314610a22578063e081b78114610a42578063e63cac2414610a62578063e8a3d48514610a8257600080fd5b8063c91cb920116100dc578063c91cb920146109ab578063d1b85c53146109cb578063d23660f8146109ec578063d5abeb0114610a0c57600080fd5b8063b88d4fde14610928578063b8a1eb0914610948578063bc660cac1461095e578063c87b56dd1461098b57600080fd5b80638f0c62cc11610185578063a22cb46511610154578063a22cb465146108b2578063a2b40d19146108d2578063af246ecb146108f2578063b73c6ce91461091357600080fd5b80638f0c62cc1461084a578063938e3d7b1461086a57806395d89b411461088a578063a0712d681461089f57600080fd5b806383a9e049116101c157806383a9e049146107da5780638606d938146107f95780638a78bdf6146108195780638da5cb5b1461082c57600080fd5b806378b2109b146107845780637b1b1de6146107a45780637bca889c146107ba57600080fd5b80633708a2e5116102d7578063507e094f1161026a57806370a082311161023957806370a0823114610719578063715018a6146107395780637241e0a11461074e57806374164e361461076e57600080fd5b8063507e094f146106a357806351a37a05146106b957806355f804b3146106d95780636352211e146106f957600080fd5b806342966c68116102a657806342966c681461062d57806346db83691461064d578063481af589146106635780634f558e791461068357600080fd5b80633708a2e5146105ad5780633c4c7bb4146105cd578063404c7cdd146105ed57806342842e0e1461060d57600080fd5b80630da12de01161034f5780632057310c1161031e5780632057310c1461053357806323b872dd1461055357806326a5b73414610573578063315d32ae1461058d57600080fd5b80630da12de0146104c85780630dc28efe146104de5780630fa420c6146104fe57806318160ddd1461051e57600080fd5b8063081812fc1161038b578063081812fc1461042b57806308fc299b14610463578063095ea7b3146104875780630d99ede9146104a757600080fd5b806301ffc9a7146103b2578063046dc166146103e757806306fdde0314610409575b600080fd5b3480156103be57600080fd5b506103d26103cd3660046133b3565b610b40565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b506104076104023660046133e5565b610b92565b005b34801561041557600080fd5b5061041e610be7565b6040516103de919061345a565b34801561043757600080fd5b5061044b61044636600461346d565b610c79565b6040516001600160a01b0390911681526020016103de565b34801561046f57600080fd5b5061047960135481565b6040519081526020016103de565b34801561049357600080fd5b506104076104a2366004613486565b610d0e565b3480156104b357600080fd5b50600c546103d290600160a01b900460ff1681565b3480156104d457600080fd5b5061047960155481565b3480156104ea57600080fd5b506104076104f93660046134b2565b610e24565b34801561050a57600080fd5b506104076105193660046134f0565b610ef3565b34801561052a57600080fd5b50610479610f30565b34801561053f57600080fd5b5061040761054e36600461350d565b610f47565b34801561055f57600080fd5b5061040761056e36600461352f565b6110cc565b34801561057f57600080fd5b506017546103d29060ff1681565b34801561059957600080fd5b506104076105a836600461346d565b6110fe565b3480156105b957600080fd5b506104076105c83660046134f0565b6111d1565b3480156105d957600080fd5b506104076105e83660046134f0565b611219565b3480156105f957600080fd5b5061040761060836600461346d565b61125f565b34801561061957600080fd5b5061040761062836600461352f565b6112e0565b34801561063957600080fd5b5061040761064836600461346d565b6112fb565b34801561065957600080fd5b5061047960165481565b34801561066f57600080fd5b5061040761067e36600461361c565b6113eb565b34801561068f57600080fd5b506103d261069e36600461346d565b6116e8565b3480156106af57600080fd5b50610479600e5481565b3480156106c557600080fd5b506104076106d4366004613686565b611707565b3480156106e557600080fd5b506104076106f43660046136c8565b6117b4565b34801561070557600080fd5b5061044b61071436600461346d565b6117f5565b34801561072557600080fd5b506104796107343660046133e5565b61186c565b34801561074557600080fd5b506104076118f3565b34801561075a57600080fd5b50610407610769366004613711565b611929565b34801561077a57600080fd5b5061047960145481565b34801561079057600080fd5b50600c5461044b906001600160a01b031681565b3480156107b057600080fd5b50610479600f5481565b3480156107c657600080fd5b506104076107d5366004613686565b6119d2565b3480156107e657600080fd5b506017546103d290610100900460ff1681565b34801561080557600080fd5b5061040761081436600461346d565b611a37565b61040761082736600461373f565b611a66565b34801561083857600080fd5b506006546001600160a01b031661044b565b34801561085657600080fd5b506104076108653660046134f0565b611d48565b34801561087657600080fd5b506104076108853660046136c8565b611d8c565b34801561089657600080fd5b5061041e611dc9565b6104076108ad36600461346d565b611dd8565b3480156108be57600080fd5b506104076108cd3660046137a1565b611f42565b3480156108de57600080fd5b506104076108ed36600461346d565b612007565b3480156108fe57600080fd5b50600c546103d290600160a81b900460ff1681565b34801561091f57600080fd5b50610407612036565b34801561093457600080fd5b506104076109433660046137cf565b61208f565b34801561095457600080fd5b5061047960105481565b34801561096a57600080fd5b506104796109793660046133e5565b60126020526000908152604090205481565b34801561099757600080fd5b5061041e6109a636600461346d565b6120c7565b3480156109b757600080fd5b506104076109c636600461346d565b6121a2565b3480156109d757600080fd5b506017546103d2906301000000900460ff1681565b3480156109f857600080fd5b50610407610a0736600461346d565b6121d1565b348015610a1857600080fd5b50610479600d5481565b348015610a2e57600080fd5b50610407610a3d36600461346d565b61223e565b348015610a4e57600080fd5b506017546103d29062010000900460ff1681565b348015610a6e57600080fd5b50610407610a7d3660046134f0565b6122b4565b348015610a8e57600080fd5b5061041e6122fc565b348015610aa357600080fd5b50610407610ab23660046134f0565b61230b565b348015610ac357600080fd5b506103d2610ad2366004613711565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b0c57600080fd5b50610407610b1b3660046133e5565b612353565b348015610b2c57600080fd5b50610407610b3b36600461346d565b6123ee565b60006001600160e01b031982166380ac58cd60e01b1480610b7157506001600160e01b03198216635b5e139f60e01b145b80610b8c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b03163314610bc55760405162461bcd60e51b8152600401610bbc9061383b565b60405180910390fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610bf690613870565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2290613870565b8015610c6f5780601f10610c4457610100808354040283529160200191610c6f565b820191906000526020600020905b815481529060010190602001808311610c5257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cf25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bbc565b506000908152600460205260409020546001600160a01b031690565b6000610d19826117f5565b9050806001600160a01b0316836001600160a01b03161415610d875760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bbc565b336001600160a01b0382161480610da35750610da38133610ad2565b610e155760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bbc565b610e1f838361241d565b505050565b6006546001600160a01b03163314610e4e5760405162461bcd60e51b8152600401610bbc9061383b565b60008211610e9e5760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610bbc565b600d5482600854610eaf91906138c1565b1115610ecd5760405162461bcd60e51b8152600401610bbc906138d9565b60005b82811015610e1f57610ee18261248b565b80610eeb81613905565b915050610ed0565b6006546001600160a01b03163314610f1d5760405162461bcd60e51b8152600401610bbc9061383b565b6017805460ff1916911515919091179055565b6000600954600854610f429190613920565b905090565b60026007541415610f6a5760405162461bcd60e51b8152600401610bbc90613937565b6002600755601754829062010000900460ff16610fb95760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b6044820152606401610bbc565b600e54811115610fdb5760405162461bcd60e51b8152600401610bbc9061396e565b600d5481600854610fec91906138c1565b111561100a5760405162461bcd60e51b8152600401610bbc906138d9565b600c54600160a81b900460ff166110575760405162461bcd60e51b81526020600482015260116024820152701512d39196481b9bdd08195b98589b1959607a1b6044820152606401610bbc565b8183601054611066919061399d565b146110835760405162461bcd60e51b8152600401610bbc906139bc565b600c5461109b906001600160a01b03163330856124b1565b60005b838110156110c1576110af3361248b565b806110b981613905565b91505061109e565b505060016007555050565b6110d7335b8261251c565b6110f35760405162461bcd60e51b8152600401610bbc906139e5565b610e1f838383612613565b6006546001600160a01b031633146111285760405162461bcd60e51b8152600401610bbc9061383b565b60085481101561117a5760405162461bcd60e51b815260206004820181905260248201527f4d757374206265206c6172676572207468616e206d696e74656420636f756e746044820152606401610bbc565b600d548111156111cc5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206265206c657373207468616e206d617820737570706c79000000006044820152606401610bbc565b601355565b6006546001600160a01b031633146111fb5760405162461bcd60e51b8152600401610bbc9061383b565b6017805491151563010000000263ff00000019909216919091179055565b6006546001600160a01b031633146112435760405162461bcd60e51b8152600401610bbc9061383b565b60178054911515620100000262ff000019909216919091179055565b6006546001600160a01b031633146112895760405162461bcd60e51b8152600401610bbc9061383b565b6008548110156112db5760405162461bcd60e51b815260206004820181905260248201527f4d757374206265206c6172676572207468616e206d696e74656420636f756e746044820152606401610bbc565b600d55565b610e1f8383836040518060200160405280600081525061208f565b6002600754141561131e5760405162461bcd60e51b8152600401610bbc90613937565b60026007556017546301000000900460ff1661136c5760405162461bcd60e51b815260206004820152600d60248201526c4275726e206e6f74206c69766560981b6044820152606401610bbc565b611375336110d1565b6113c15760405162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665646044820152606401610bbc565b6001600960008282546113d491906138c1565b909155506113e39050816127b3565b506001600755565b6002600754141561140e5760405162461bcd60e51b8152600401610bbc90613937565b600260075560175486908690869086908690610100900460ff166114675760405162461bcd60e51b815260206004820152601060248201526f50726573616c65206e6f74206c69766560801b6044820152606401610bbc565b611471858561284e565b6114ae5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b4b3b732b960911b6044820152606401610bbc565b846114bb33858585612872565b146114fc5760405162461bcd60e51b815260206004820152601160248201527012185cda0818da1958dac819985a5b1959607a1b6044820152606401610bbc565b428110156115435760405162461bcd60e51b815260206004820152601460248201527314da59db985d1d5c99481a5cc8195e1c1a5c995960621b6044820152606401610bbc565b6014548311156115655760405162461bcd60e51b8152600401610bbc9061396e565b3360009081526012602052604090205482906115829085906138c1565b11156115ca5760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881dd85b1b195d08195e18d959591959604a1b6044820152606401610bbc565b601354836008546115db91906138c1565b11156115f95760405162461bcd60e51b8152600401610bbc906138d9565b600c54600160a81b900460ff166116465760405162461bcd60e51b81526020600482015260116024820152701512d39196481b9bdd08195b98589b1959607a1b6044820152606401610bbc565b8589601654611655919061399d565b146116725760405162461bcd60e51b8152600401610bbc906139bc565b600c5461168a906001600160a01b03163330896124b1565b33600090815260126020526040812080548b92906116a99084906138c1565b90915550600090505b898110156116d5576116c33361248b565b806116cd81613905565b9150506116b2565b5050600160075550505050505050505050565b6000818152600260205260408120546001600160a01b03161515610b8c565b6006546001600160a01b031633146117315760405162461bcd60e51b8152600401610bbc9061383b565b604051637921219560e11b81523060048201526001600160a01b038281166024830152604482018490526001606483015260a06084830152600060a483015284169063f242432a9060c4015b600060405180830381600087803b15801561179757600080fd5b505af11580156117ab573d6000803e3d6000fd5b50505050505050565b6006546001600160a01b031633146117de5760405162461bcd60e51b8152600401610bbc9061383b565b80516117f190600a906020840190613304565b5050565b6000818152600260205260408120546001600160a01b031680610b8c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bbc565b60006001600160a01b0382166118d75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bbc565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461191d5760405162461bcd60e51b8152600401610bbc9061383b565b611927600061290b565b565b6006546001600160a01b031633146119535760405162461bcd60e51b8152600401610bbc9061383b565b6040516370a0823160e01b81523060048201526117f19082906001600160a01b038516906370a0823190602401602060405180830381865afa15801561199d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c19190613a36565b6001600160a01b038516919061295d565b6006546001600160a01b031633146119fc5760405162461bcd60e51b8152600401610bbc9061383b565b604051632142170760e11b81523060048201526001600160a01b038281166024830152604482018490528416906342842e0e9060640161177d565b6006546001600160a01b03163314611a615760405162461bcd60e51b8152600401610bbc9061383b565b601555565b60026007541415611a895760405162461bcd60e51b8152600401610bbc90613937565b600260075560175485908590859085908590610100900460ff16611ae25760405162461bcd60e51b815260206004820152601060248201526f50726573616c65206e6f74206c69766560801b6044820152606401610bbc565b611aec858561284e565b611b295760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b4b3b732b960911b6044820152606401610bbc565b84611b3633858585612872565b14611b775760405162461bcd60e51b815260206004820152601160248201527012185cda0818da1958dac819985a5b1959607a1b6044820152606401610bbc565b42811015611bbe5760405162461bcd60e51b815260206004820152601460248201527314da59db985d1d5c99481a5cc8195e1c1a5c995960621b6044820152606401610bbc565b601454831115611be05760405162461bcd60e51b8152600401610bbc9061396e565b336000908152601260205260409020548290611bfd9085906138c1565b1115611c455760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881dd85b1b195d08195e18d959591959604a1b6044820152606401610bbc565b60135483600854611c5691906138c1565b1115611c745760405162461bcd60e51b8152600401610bbc906138d9565b600c54600160a01b900460ff16611cbf5760405162461bcd60e51b815260206004820152600f60248201526e115512081b9bdd08195b98589b1959608a1b6044820152606401610bbc565b3488601554611cce919061399d565b14611ceb5760405162461bcd60e51b8152600401610bbc906139bc565b33600090815260126020526040812080548a9290611d0a9084906138c1565b90915550600090505b88811015611d3657611d243361248b565b80611d2e81613905565b915050611d13565b50506001600755505050505050505050565b6006546001600160a01b03163314611d725760405162461bcd60e51b8152600401610bbc9061383b565b601780549115156101000261ff0019909216919091179055565b6006546001600160a01b03163314611db65760405162461bcd60e51b8152600401610bbc9061383b565b80516117f190600b906020840190613304565b606060018054610bf690613870565b60026007541415611dfb5760405162461bcd60e51b8152600401610bbc90613937565b6002600755601754819062010000900460ff16611e4a5760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b6044820152606401610bbc565b600e54811115611e6c5760405162461bcd60e51b8152600401610bbc9061396e565b600d5481600854611e7d91906138c1565b1115611e9b5760405162461bcd60e51b8152600401610bbc906138d9565b600c54600160a01b900460ff16611ee65760405162461bcd60e51b815260206004820152600f60248201526e115512081b9bdd08195b98589b1959608a1b6044820152606401610bbc565b3482600f54611ef5919061399d565b14611f125760405162461bcd60e51b8152600401610bbc906139bc565b60005b82811015611f3857611f263361248b565b80611f3081613905565b915050611f15565b5050600160075550565b6001600160a01b038216331415611f9b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bbc565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b031633146120315760405162461bcd60e51b8152600401610bbc9061383b565b600f55565b6006546001600160a01b031633146120605760405162461bcd60e51b8152600401610bbc9061383b565b6040514790339082156108fc029083906000818181858888f193505050501580156117f1573d6000803e3d6000fd5b612099338361251c565b6120b55760405162461bcd60e51b8152600401610bbc906139e5565b6120c18484848461298d565b50505050565b6000818152600260205260409020546060906001600160a01b03166121465760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bbc565b60006121506129c0565b90506000815111612170576040518060200160405280600081525061219b565b8061217a846129cf565b60405160200161218b929190613a4f565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146121cc5760405162461bcd60e51b8152600401610bbc9061383b565b601655565b6006546001600160a01b031633146121fb5760405162461bcd60e51b8152600401610bbc9061383b565b600081116122395760405162461bcd60e51b815260206004820152600b60248201526a04d757374206265203e20360ac1b6044820152606401610bbc565b601455565b6006546001600160a01b031633146122685760405162461bcd60e51b8152600401610bbc9061383b565b600081116122af5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59081b585e081c195c881b5a5b9d60621b6044820152606401610bbc565b600e55565b6006546001600160a01b031633146122de5760405162461bcd60e51b8152600401610bbc9061383b565b600c8054911515600160a81b0260ff60a81b19909216919091179055565b6060600b8054610bf690613870565b6006546001600160a01b031633146123355760405162461bcd60e51b8152600401610bbc9061383b565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b6006546001600160a01b0316331461237d5760405162461bcd60e51b8152600401610bbc9061383b565b6001600160a01b0381166123e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbc565b6123eb8161290b565b50565b6006546001600160a01b031633146124185760405162461bcd60e51b8152600401610bbc9061383b565b601055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612452826117f5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60016008600082825461249e91906138c1565b925050819055506123eb81600854612acd565b6040516001600160a01b03808516602483015283166044820152606481018290526120c19085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612ae7565b6000818152600260205260408120546001600160a01b03166125955760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bbc565b60006125a0836117f5565b9050806001600160a01b0316846001600160a01b031614806125db5750836001600160a01b03166125d084610c79565b6001600160a01b0316145b8061260b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612626826117f5565b6001600160a01b03161461268e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bbc565b6001600160a01b0382166126f05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bbc565b6126fb60008261241d565b6001600160a01b0383166000908152600360205260408120805460019290612724908490613920565b90915550506001600160a01b03821660009081526003602052604081208054600192906127529084906138c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006127be826117f5565b90506127cb60008361241d565b6001600160a01b03811660009081526003602052604081208054600192906127f4908490613920565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600061285a8383612bb9565b6011546001600160a01b039182169116149392505050565b6040805160609590951b6bffffffffffffffffffffffff191660208087019190915260348601949094526054850192909252607480850191909152815180850390910181526094840182528051908301207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060b485015260d0808501919091528151808503909101815260f09093019052815191012090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516001600160a01b038316602482015260448101829052610e1f90849063a9059cbb60e01b906064016124e5565b612998848484612613565b6129a484848484612bdd565b6120c15760405162461bcd60e51b8152600401610bbc90613a7e565b6060600a8054610bf690613870565b6060816129f35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a1d5780612a0781613905565b9150612a169050600a83613ae6565b91506129f7565b60008167ffffffffffffffff811115612a3857612a38613570565b6040519080825280601f01601f191660200182016040528015612a62576020820181803683370190505b5090505b841561260b57612a77600183613920565b9150612a84600a86613afa565b612a8f9060306138c1565b60f81b818381518110612aa457612aa4613b0e565b60200101906001600160f81b031916908160001a905350612ac6600a86613ae6565b9450612a66565b6117f1828260405180602001604052806000815250612cd8565b6000612b3c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d0b9092919063ffffffff16565b805190915015610e1f5780806020019051810190612b5a9190613b24565b610e1f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bbc565b6000806000612bc88585612d1a565b91509150612bd581612d8a565b509392505050565b60006001600160a01b0384163b15612cd057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612c21903390899088908890600401613b41565b6020604051808303816000875af1925050508015612c5c575060408051601f3d908101601f19168201909252612c5991810190613b7e565b60015b612cb6573d808015612c8a576040519150601f19603f3d011682016040523d82523d6000602084013e612c8f565b606091505b508051612cae5760405162461bcd60e51b8152600401610bbc90613a7e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061260b565b50600161260b565b612ce28383612f45565b612cef6000848484612bdd565b610e1f5760405162461bcd60e51b8152600401610bbc90613a7e565b606061260b8484600085613087565b600080825160411415612d515760208301516040840151606085015160001a612d45878285856131af565b94509450505050612d83565b825160401415612d7b5760208301516040840151612d7086838361329c565b935093505050612d83565b506000905060025b9250929050565b6000816004811115612d9e57612d9e613b9b565b1415612da75750565b6001816004811115612dbb57612dbb613b9b565b1415612e095760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610bbc565b6002816004811115612e1d57612e1d613b9b565b1415612e6b5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bbc565b6003816004811115612e7f57612e7f613b9b565b1415612ed85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610bbc565b6004816004811115612eec57612eec613b9b565b14156123eb5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610bbc565b6001600160a01b038216612f9b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bbc565b6000818152600260205260409020546001600160a01b0316156130005760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bbc565b6001600160a01b03821660009081526003602052604081208054600192906130299084906138c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060824710156130e85760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610bbc565b843b6131365760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bbc565b600080866001600160a01b031685876040516131529190613bb1565b60006040518083038185875af1925050503d806000811461318f576040519150601f19603f3d011682016040523d82523d6000602084013e613194565b606091505b50915091506131a48282866132cb565b979650505050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156131e65750600090506003613293565b8460ff16601b141580156131fe57508460ff16601c14155b1561320f5750600090506004613293565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613263573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661328c57600060019250925050613293565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016132bd878288856131af565b935093505050935093915050565b606083156132da57508161219b565b8251156132ea5782518084602001fd5b8160405162461bcd60e51b8152600401610bbc919061345a565b82805461331090613870565b90600052602060002090601f0160209004810192826133325760008555613378565b82601f1061334b57805160ff1916838001178555613378565b82800160010185558215613378579182015b8281111561337857825182559160200191906001019061335d565b50613384929150613388565b5090565b5b808211156133845760008155600101613389565b6001600160e01b0319811681146123eb57600080fd5b6000602082840312156133c557600080fd5b813561219b8161339d565b6001600160a01b03811681146123eb57600080fd5b6000602082840312156133f757600080fd5b813561219b816133d0565b60005b8381101561341d578181015183820152602001613405565b838111156120c15750506000910152565b60008151808452613446816020860160208601613402565b601f01601f19169290920160200192915050565b60208152600061219b602083018461342e565b60006020828403121561347f57600080fd5b5035919050565b6000806040838503121561349957600080fd5b82356134a4816133d0565b946020939093013593505050565b600080604083850312156134c557600080fd5b8235915060208301356134d7816133d0565b809150509250929050565b80151581146123eb57600080fd5b60006020828403121561350257600080fd5b813561219b816134e2565b6000806040838503121561352057600080fd5b50508035926020909101359150565b60008060006060848603121561354457600080fd5b833561354f816133d0565b9250602084013561355f816133d0565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156135a1576135a1613570565b604051601f8501601f19908116603f011681019082821181831017156135c9576135c9613570565b816040528093508581528686860111156135e257600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261360d57600080fd5b61219b83833560208501613586565b60008060008060008060c0878903121561363557600080fd5b86359550602087013567ffffffffffffffff81111561365357600080fd5b61365f89828a016135fc565b96999698505050506040850135946060810135946080820135945060a09091013592509050565b60008060006060848603121561369b57600080fd5b83356136a6816133d0565b92506020840135915060408401356136bd816133d0565b809150509250925092565b6000602082840312156136da57600080fd5b813567ffffffffffffffff8111156136f157600080fd5b8201601f8101841361370257600080fd5b61260b84823560208401613586565b6000806040838503121561372457600080fd5b823561372f816133d0565b915060208301356134d7816133d0565b600080600080600060a0868803121561375757600080fd5b85359450602086013567ffffffffffffffff81111561377557600080fd5b613781888289016135fc565b959895975050505060408401359360608101359360809091013592509050565b600080604083850312156137b457600080fd5b82356137bf816133d0565b915060208301356134d7816134e2565b600080600080608085870312156137e557600080fd5b84356137f0816133d0565b93506020850135613800816133d0565b925060408501359150606085013567ffffffffffffffff81111561382357600080fd5b61382f878288016135fc565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061388457607f821691505b602082108114156138a557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156138d4576138d46138ab565b500190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b6000600019821415613919576139196138ab565b5060010190565b600082821015613932576139326138ab565b500390565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526015908201527413585e081c195c881b5a5b9d08195e18d959591959605a1b604082015260600190565b60008160001904831182151516156139b7576139b76138ab565b500290565b6020808252600f908201526e496e636f727265637420707269636560881b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600060208284031215613a4857600080fd5b5051919050565b60008351613a61818460208801613402565b835190830190613a75818360208801613402565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082613af557613af5613ad0565b500490565b600082613b0957613b09613ad0565b500690565b634e487b7160e01b600052603260045260246000fd5b600060208284031215613b3657600080fd5b815161219b816134e2565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613b749083018461342e565b9695505050505050565b600060208284031215613b9057600080fd5b815161219b8161339d565b634e487b7160e01b600052602160045260246000fd5b60008251613bc3818460208701613402565b919091019291505056fea2646970667358221220cd019a740293c38e91cef98f8416946eb5029d36382bbfd01a46ae53e61b1c4264736f6c634300080b003343727970746f2043616e6e6162697320436c7562204272616e6420436f6c6c65637461626c652045646974696f6e203368747470733a2f2f746f6b656e66792d70726f64756374696f6e2d7075626c69632e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f31392f636f6e74726163742d75726968747470733a2f2f6d657461646174612e6170692e746f6b656e66792e636f6d2f31392f6d657461646174612f000000000000000000000000b43ae42c0030eef01ca50050d07bf2b355d62f26

Deployed Bytecode

0x6080604052600436106103ad5760003560e01c806378b2109b116101e7578063b88d4fde1161010d578063db6242c3116100a0578063e97eb0a21161006f578063e97eb0a214610a97578063e985e9c514610ab7578063f2fde38b14610b00578063f9d594f514610b2057600080fd5b8063db6242c314610a22578063e081b78114610a42578063e63cac2414610a62578063e8a3d48514610a8257600080fd5b8063c91cb920116100dc578063c91cb920146109ab578063d1b85c53146109cb578063d23660f8146109ec578063d5abeb0114610a0c57600080fd5b8063b88d4fde14610928578063b8a1eb0914610948578063bc660cac1461095e578063c87b56dd1461098b57600080fd5b80638f0c62cc11610185578063a22cb46511610154578063a22cb465146108b2578063a2b40d19146108d2578063af246ecb146108f2578063b73c6ce91461091357600080fd5b80638f0c62cc1461084a578063938e3d7b1461086a57806395d89b411461088a578063a0712d681461089f57600080fd5b806383a9e049116101c157806383a9e049146107da5780638606d938146107f95780638a78bdf6146108195780638da5cb5b1461082c57600080fd5b806378b2109b146107845780637b1b1de6146107a45780637bca889c146107ba57600080fd5b80633708a2e5116102d7578063507e094f1161026a57806370a082311161023957806370a0823114610719578063715018a6146107395780637241e0a11461074e57806374164e361461076e57600080fd5b8063507e094f146106a357806351a37a05146106b957806355f804b3146106d95780636352211e146106f957600080fd5b806342966c68116102a657806342966c681461062d57806346db83691461064d578063481af589146106635780634f558e791461068357600080fd5b80633708a2e5146105ad5780633c4c7bb4146105cd578063404c7cdd146105ed57806342842e0e1461060d57600080fd5b80630da12de01161034f5780632057310c1161031e5780632057310c1461053357806323b872dd1461055357806326a5b73414610573578063315d32ae1461058d57600080fd5b80630da12de0146104c85780630dc28efe146104de5780630fa420c6146104fe57806318160ddd1461051e57600080fd5b8063081812fc1161038b578063081812fc1461042b57806308fc299b14610463578063095ea7b3146104875780630d99ede9146104a757600080fd5b806301ffc9a7146103b2578063046dc166146103e757806306fdde0314610409575b600080fd5b3480156103be57600080fd5b506103d26103cd3660046133b3565b610b40565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b506104076104023660046133e5565b610b92565b005b34801561041557600080fd5b5061041e610be7565b6040516103de919061345a565b34801561043757600080fd5b5061044b61044636600461346d565b610c79565b6040516001600160a01b0390911681526020016103de565b34801561046f57600080fd5b5061047960135481565b6040519081526020016103de565b34801561049357600080fd5b506104076104a2366004613486565b610d0e565b3480156104b357600080fd5b50600c546103d290600160a01b900460ff1681565b3480156104d457600080fd5b5061047960155481565b3480156104ea57600080fd5b506104076104f93660046134b2565b610e24565b34801561050a57600080fd5b506104076105193660046134f0565b610ef3565b34801561052a57600080fd5b50610479610f30565b34801561053f57600080fd5b5061040761054e36600461350d565b610f47565b34801561055f57600080fd5b5061040761056e36600461352f565b6110cc565b34801561057f57600080fd5b506017546103d29060ff1681565b34801561059957600080fd5b506104076105a836600461346d565b6110fe565b3480156105b957600080fd5b506104076105c83660046134f0565b6111d1565b3480156105d957600080fd5b506104076105e83660046134f0565b611219565b3480156105f957600080fd5b5061040761060836600461346d565b61125f565b34801561061957600080fd5b5061040761062836600461352f565b6112e0565b34801561063957600080fd5b5061040761064836600461346d565b6112fb565b34801561065957600080fd5b5061047960165481565b34801561066f57600080fd5b5061040761067e36600461361c565b6113eb565b34801561068f57600080fd5b506103d261069e36600461346d565b6116e8565b3480156106af57600080fd5b50610479600e5481565b3480156106c557600080fd5b506104076106d4366004613686565b611707565b3480156106e557600080fd5b506104076106f43660046136c8565b6117b4565b34801561070557600080fd5b5061044b61071436600461346d565b6117f5565b34801561072557600080fd5b506104796107343660046133e5565b61186c565b34801561074557600080fd5b506104076118f3565b34801561075a57600080fd5b50610407610769366004613711565b611929565b34801561077a57600080fd5b5061047960145481565b34801561079057600080fd5b50600c5461044b906001600160a01b031681565b3480156107b057600080fd5b50610479600f5481565b3480156107c657600080fd5b506104076107d5366004613686565b6119d2565b3480156107e657600080fd5b506017546103d290610100900460ff1681565b34801561080557600080fd5b5061040761081436600461346d565b611a37565b61040761082736600461373f565b611a66565b34801561083857600080fd5b506006546001600160a01b031661044b565b34801561085657600080fd5b506104076108653660046134f0565b611d48565b34801561087657600080fd5b506104076108853660046136c8565b611d8c565b34801561089657600080fd5b5061041e611dc9565b6104076108ad36600461346d565b611dd8565b3480156108be57600080fd5b506104076108cd3660046137a1565b611f42565b3480156108de57600080fd5b506104076108ed36600461346d565b612007565b3480156108fe57600080fd5b50600c546103d290600160a81b900460ff1681565b34801561091f57600080fd5b50610407612036565b34801561093457600080fd5b506104076109433660046137cf565b61208f565b34801561095457600080fd5b5061047960105481565b34801561096a57600080fd5b506104796109793660046133e5565b60126020526000908152604090205481565b34801561099757600080fd5b5061041e6109a636600461346d565b6120c7565b3480156109b757600080fd5b506104076109c636600461346d565b6121a2565b3480156109d757600080fd5b506017546103d2906301000000900460ff1681565b3480156109f857600080fd5b50610407610a0736600461346d565b6121d1565b348015610a1857600080fd5b50610479600d5481565b348015610a2e57600080fd5b50610407610a3d36600461346d565b61223e565b348015610a4e57600080fd5b506017546103d29062010000900460ff1681565b348015610a6e57600080fd5b50610407610a7d3660046134f0565b6122b4565b348015610a8e57600080fd5b5061041e6122fc565b348015610aa357600080fd5b50610407610ab23660046134f0565b61230b565b348015610ac357600080fd5b506103d2610ad2366004613711565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b0c57600080fd5b50610407610b1b3660046133e5565b612353565b348015610b2c57600080fd5b50610407610b3b36600461346d565b6123ee565b60006001600160e01b031982166380ac58cd60e01b1480610b7157506001600160e01b03198216635b5e139f60e01b145b80610b8c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b03163314610bc55760405162461bcd60e51b8152600401610bbc9061383b565b60405180910390fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610bf690613870565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2290613870565b8015610c6f5780601f10610c4457610100808354040283529160200191610c6f565b820191906000526020600020905b815481529060010190602001808311610c5257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cf25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bbc565b506000908152600460205260409020546001600160a01b031690565b6000610d19826117f5565b9050806001600160a01b0316836001600160a01b03161415610d875760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bbc565b336001600160a01b0382161480610da35750610da38133610ad2565b610e155760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bbc565b610e1f838361241d565b505050565b6006546001600160a01b03163314610e4e5760405162461bcd60e51b8152600401610bbc9061383b565b60008211610e9e5760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610bbc565b600d5482600854610eaf91906138c1565b1115610ecd5760405162461bcd60e51b8152600401610bbc906138d9565b60005b82811015610e1f57610ee18261248b565b80610eeb81613905565b915050610ed0565b6006546001600160a01b03163314610f1d5760405162461bcd60e51b8152600401610bbc9061383b565b6017805460ff1916911515919091179055565b6000600954600854610f429190613920565b905090565b60026007541415610f6a5760405162461bcd60e51b8152600401610bbc90613937565b6002600755601754829062010000900460ff16610fb95760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b6044820152606401610bbc565b600e54811115610fdb5760405162461bcd60e51b8152600401610bbc9061396e565b600d5481600854610fec91906138c1565b111561100a5760405162461bcd60e51b8152600401610bbc906138d9565b600c54600160a81b900460ff166110575760405162461bcd60e51b81526020600482015260116024820152701512d39196481b9bdd08195b98589b1959607a1b6044820152606401610bbc565b8183601054611066919061399d565b146110835760405162461bcd60e51b8152600401610bbc906139bc565b600c5461109b906001600160a01b03163330856124b1565b60005b838110156110c1576110af3361248b565b806110b981613905565b91505061109e565b505060016007555050565b6110d7335b8261251c565b6110f35760405162461bcd60e51b8152600401610bbc906139e5565b610e1f838383612613565b6006546001600160a01b031633146111285760405162461bcd60e51b8152600401610bbc9061383b565b60085481101561117a5760405162461bcd60e51b815260206004820181905260248201527f4d757374206265206c6172676572207468616e206d696e74656420636f756e746044820152606401610bbc565b600d548111156111cc5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206265206c657373207468616e206d617820737570706c79000000006044820152606401610bbc565b601355565b6006546001600160a01b031633146111fb5760405162461bcd60e51b8152600401610bbc9061383b565b6017805491151563010000000263ff00000019909216919091179055565b6006546001600160a01b031633146112435760405162461bcd60e51b8152600401610bbc9061383b565b60178054911515620100000262ff000019909216919091179055565b6006546001600160a01b031633146112895760405162461bcd60e51b8152600401610bbc9061383b565b6008548110156112db5760405162461bcd60e51b815260206004820181905260248201527f4d757374206265206c6172676572207468616e206d696e74656420636f756e746044820152606401610bbc565b600d55565b610e1f8383836040518060200160405280600081525061208f565b6002600754141561131e5760405162461bcd60e51b8152600401610bbc90613937565b60026007556017546301000000900460ff1661136c5760405162461bcd60e51b815260206004820152600d60248201526c4275726e206e6f74206c69766560981b6044820152606401610bbc565b611375336110d1565b6113c15760405162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665646044820152606401610bbc565b6001600960008282546113d491906138c1565b909155506113e39050816127b3565b506001600755565b6002600754141561140e5760405162461bcd60e51b8152600401610bbc90613937565b600260075560175486908690869086908690610100900460ff166114675760405162461bcd60e51b815260206004820152601060248201526f50726573616c65206e6f74206c69766560801b6044820152606401610bbc565b611471858561284e565b6114ae5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b4b3b732b960911b6044820152606401610bbc565b846114bb33858585612872565b146114fc5760405162461bcd60e51b815260206004820152601160248201527012185cda0818da1958dac819985a5b1959607a1b6044820152606401610bbc565b428110156115435760405162461bcd60e51b815260206004820152601460248201527314da59db985d1d5c99481a5cc8195e1c1a5c995960621b6044820152606401610bbc565b6014548311156115655760405162461bcd60e51b8152600401610bbc9061396e565b3360009081526012602052604090205482906115829085906138c1565b11156115ca5760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881dd85b1b195d08195e18d959591959604a1b6044820152606401610bbc565b601354836008546115db91906138c1565b11156115f95760405162461bcd60e51b8152600401610bbc906138d9565b600c54600160a81b900460ff166116465760405162461bcd60e51b81526020600482015260116024820152701512d39196481b9bdd08195b98589b1959607a1b6044820152606401610bbc565b8589601654611655919061399d565b146116725760405162461bcd60e51b8152600401610bbc906139bc565b600c5461168a906001600160a01b03163330896124b1565b33600090815260126020526040812080548b92906116a99084906138c1565b90915550600090505b898110156116d5576116c33361248b565b806116cd81613905565b9150506116b2565b5050600160075550505050505050505050565b6000818152600260205260408120546001600160a01b03161515610b8c565b6006546001600160a01b031633146117315760405162461bcd60e51b8152600401610bbc9061383b565b604051637921219560e11b81523060048201526001600160a01b038281166024830152604482018490526001606483015260a06084830152600060a483015284169063f242432a9060c4015b600060405180830381600087803b15801561179757600080fd5b505af11580156117ab573d6000803e3d6000fd5b50505050505050565b6006546001600160a01b031633146117de5760405162461bcd60e51b8152600401610bbc9061383b565b80516117f190600a906020840190613304565b5050565b6000818152600260205260408120546001600160a01b031680610b8c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bbc565b60006001600160a01b0382166118d75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bbc565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461191d5760405162461bcd60e51b8152600401610bbc9061383b565b611927600061290b565b565b6006546001600160a01b031633146119535760405162461bcd60e51b8152600401610bbc9061383b565b6040516370a0823160e01b81523060048201526117f19082906001600160a01b038516906370a0823190602401602060405180830381865afa15801561199d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c19190613a36565b6001600160a01b038516919061295d565b6006546001600160a01b031633146119fc5760405162461bcd60e51b8152600401610bbc9061383b565b604051632142170760e11b81523060048201526001600160a01b038281166024830152604482018490528416906342842e0e9060640161177d565b6006546001600160a01b03163314611a615760405162461bcd60e51b8152600401610bbc9061383b565b601555565b60026007541415611a895760405162461bcd60e51b8152600401610bbc90613937565b600260075560175485908590859085908590610100900460ff16611ae25760405162461bcd60e51b815260206004820152601060248201526f50726573616c65206e6f74206c69766560801b6044820152606401610bbc565b611aec858561284e565b611b295760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b4b3b732b960911b6044820152606401610bbc565b84611b3633858585612872565b14611b775760405162461bcd60e51b815260206004820152601160248201527012185cda0818da1958dac819985a5b1959607a1b6044820152606401610bbc565b42811015611bbe5760405162461bcd60e51b815260206004820152601460248201527314da59db985d1d5c99481a5cc8195e1c1a5c995960621b6044820152606401610bbc565b601454831115611be05760405162461bcd60e51b8152600401610bbc9061396e565b336000908152601260205260409020548290611bfd9085906138c1565b1115611c455760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881dd85b1b195d08195e18d959591959604a1b6044820152606401610bbc565b60135483600854611c5691906138c1565b1115611c745760405162461bcd60e51b8152600401610bbc906138d9565b600c54600160a01b900460ff16611cbf5760405162461bcd60e51b815260206004820152600f60248201526e115512081b9bdd08195b98589b1959608a1b6044820152606401610bbc565b3488601554611cce919061399d565b14611ceb5760405162461bcd60e51b8152600401610bbc906139bc565b33600090815260126020526040812080548a9290611d0a9084906138c1565b90915550600090505b88811015611d3657611d243361248b565b80611d2e81613905565b915050611d13565b50506001600755505050505050505050565b6006546001600160a01b03163314611d725760405162461bcd60e51b8152600401610bbc9061383b565b601780549115156101000261ff0019909216919091179055565b6006546001600160a01b03163314611db65760405162461bcd60e51b8152600401610bbc9061383b565b80516117f190600b906020840190613304565b606060018054610bf690613870565b60026007541415611dfb5760405162461bcd60e51b8152600401610bbc90613937565b6002600755601754819062010000900460ff16611e4a5760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b6044820152606401610bbc565b600e54811115611e6c5760405162461bcd60e51b8152600401610bbc9061396e565b600d5481600854611e7d91906138c1565b1115611e9b5760405162461bcd60e51b8152600401610bbc906138d9565b600c54600160a01b900460ff16611ee65760405162461bcd60e51b815260206004820152600f60248201526e115512081b9bdd08195b98589b1959608a1b6044820152606401610bbc565b3482600f54611ef5919061399d565b14611f125760405162461bcd60e51b8152600401610bbc906139bc565b60005b82811015611f3857611f263361248b565b80611f3081613905565b915050611f15565b5050600160075550565b6001600160a01b038216331415611f9b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bbc565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b031633146120315760405162461bcd60e51b8152600401610bbc9061383b565b600f55565b6006546001600160a01b031633146120605760405162461bcd60e51b8152600401610bbc9061383b565b6040514790339082156108fc029083906000818181858888f193505050501580156117f1573d6000803e3d6000fd5b612099338361251c565b6120b55760405162461bcd60e51b8152600401610bbc906139e5565b6120c18484848461298d565b50505050565b6000818152600260205260409020546060906001600160a01b03166121465760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bbc565b60006121506129c0565b90506000815111612170576040518060200160405280600081525061219b565b8061217a846129cf565b60405160200161218b929190613a4f565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146121cc5760405162461bcd60e51b8152600401610bbc9061383b565b601655565b6006546001600160a01b031633146121fb5760405162461bcd60e51b8152600401610bbc9061383b565b600081116122395760405162461bcd60e51b815260206004820152600b60248201526a04d757374206265203e20360ac1b6044820152606401610bbc565b601455565b6006546001600160a01b031633146122685760405162461bcd60e51b8152600401610bbc9061383b565b600081116122af5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59081b585e081c195c881b5a5b9d60621b6044820152606401610bbc565b600e55565b6006546001600160a01b031633146122de5760405162461bcd60e51b8152600401610bbc9061383b565b600c8054911515600160a81b0260ff60a81b19909216919091179055565b6060600b8054610bf690613870565b6006546001600160a01b031633146123355760405162461bcd60e51b8152600401610bbc9061383b565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b6006546001600160a01b0316331461237d5760405162461bcd60e51b8152600401610bbc9061383b565b6001600160a01b0381166123e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbc565b6123eb8161290b565b50565b6006546001600160a01b031633146124185760405162461bcd60e51b8152600401610bbc9061383b565b601055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612452826117f5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60016008600082825461249e91906138c1565b925050819055506123eb81600854612acd565b6040516001600160a01b03808516602483015283166044820152606481018290526120c19085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612ae7565b6000818152600260205260408120546001600160a01b03166125955760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bbc565b60006125a0836117f5565b9050806001600160a01b0316846001600160a01b031614806125db5750836001600160a01b03166125d084610c79565b6001600160a01b0316145b8061260b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612626826117f5565b6001600160a01b03161461268e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bbc565b6001600160a01b0382166126f05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bbc565b6126fb60008261241d565b6001600160a01b0383166000908152600360205260408120805460019290612724908490613920565b90915550506001600160a01b03821660009081526003602052604081208054600192906127529084906138c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006127be826117f5565b90506127cb60008361241d565b6001600160a01b03811660009081526003602052604081208054600192906127f4908490613920565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600061285a8383612bb9565b6011546001600160a01b039182169116149392505050565b6040805160609590951b6bffffffffffffffffffffffff191660208087019190915260348601949094526054850192909252607480850191909152815180850390910181526094840182528051908301207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060b485015260d0808501919091528151808503909101815260f09093019052815191012090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516001600160a01b038316602482015260448101829052610e1f90849063a9059cbb60e01b906064016124e5565b612998848484612613565b6129a484848484612bdd565b6120c15760405162461bcd60e51b8152600401610bbc90613a7e565b6060600a8054610bf690613870565b6060816129f35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a1d5780612a0781613905565b9150612a169050600a83613ae6565b91506129f7565b60008167ffffffffffffffff811115612a3857612a38613570565b6040519080825280601f01601f191660200182016040528015612a62576020820181803683370190505b5090505b841561260b57612a77600183613920565b9150612a84600a86613afa565b612a8f9060306138c1565b60f81b818381518110612aa457612aa4613b0e565b60200101906001600160f81b031916908160001a905350612ac6600a86613ae6565b9450612a66565b6117f1828260405180602001604052806000815250612cd8565b6000612b3c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d0b9092919063ffffffff16565b805190915015610e1f5780806020019051810190612b5a9190613b24565b610e1f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bbc565b6000806000612bc88585612d1a565b91509150612bd581612d8a565b509392505050565b60006001600160a01b0384163b15612cd057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612c21903390899088908890600401613b41565b6020604051808303816000875af1925050508015612c5c575060408051601f3d908101601f19168201909252612c5991810190613b7e565b60015b612cb6573d808015612c8a576040519150601f19603f3d011682016040523d82523d6000602084013e612c8f565b606091505b508051612cae5760405162461bcd60e51b8152600401610bbc90613a7e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061260b565b50600161260b565b612ce28383612f45565b612cef6000848484612bdd565b610e1f5760405162461bcd60e51b8152600401610bbc90613a7e565b606061260b8484600085613087565b600080825160411415612d515760208301516040840151606085015160001a612d45878285856131af565b94509450505050612d83565b825160401415612d7b5760208301516040840151612d7086838361329c565b935093505050612d83565b506000905060025b9250929050565b6000816004811115612d9e57612d9e613b9b565b1415612da75750565b6001816004811115612dbb57612dbb613b9b565b1415612e095760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610bbc565b6002816004811115612e1d57612e1d613b9b565b1415612e6b5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bbc565b6003816004811115612e7f57612e7f613b9b565b1415612ed85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610bbc565b6004816004811115612eec57612eec613b9b565b14156123eb5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610bbc565b6001600160a01b038216612f9b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bbc565b6000818152600260205260409020546001600160a01b0316156130005760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bbc565b6001600160a01b03821660009081526003602052604081208054600192906130299084906138c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060824710156130e85760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610bbc565b843b6131365760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bbc565b600080866001600160a01b031685876040516131529190613bb1565b60006040518083038185875af1925050503d806000811461318f576040519150601f19603f3d011682016040523d82523d6000602084013e613194565b606091505b50915091506131a48282866132cb565b979650505050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156131e65750600090506003613293565b8460ff16601b141580156131fe57508460ff16601c14155b1561320f5750600090506004613293565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613263573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661328c57600060019250925050613293565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016132bd878288856131af565b935093505050935093915050565b606083156132da57508161219b565b8251156132ea5782518084602001fd5b8160405162461bcd60e51b8152600401610bbc919061345a565b82805461331090613870565b90600052602060002090601f0160209004810192826133325760008555613378565b82601f1061334b57805160ff1916838001178555613378565b82800160010185558215613378579182015b8281111561337857825182559160200191906001019061335d565b50613384929150613388565b5090565b5b808211156133845760008155600101613389565b6001600160e01b0319811681146123eb57600080fd5b6000602082840312156133c557600080fd5b813561219b8161339d565b6001600160a01b03811681146123eb57600080fd5b6000602082840312156133f757600080fd5b813561219b816133d0565b60005b8381101561341d578181015183820152602001613405565b838111156120c15750506000910152565b60008151808452613446816020860160208601613402565b601f01601f19169290920160200192915050565b60208152600061219b602083018461342e565b60006020828403121561347f57600080fd5b5035919050565b6000806040838503121561349957600080fd5b82356134a4816133d0565b946020939093013593505050565b600080604083850312156134c557600080fd5b8235915060208301356134d7816133d0565b809150509250929050565b80151581146123eb57600080fd5b60006020828403121561350257600080fd5b813561219b816134e2565b6000806040838503121561352057600080fd5b50508035926020909101359150565b60008060006060848603121561354457600080fd5b833561354f816133d0565b9250602084013561355f816133d0565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156135a1576135a1613570565b604051601f8501601f19908116603f011681019082821181831017156135c9576135c9613570565b816040528093508581528686860111156135e257600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261360d57600080fd5b61219b83833560208501613586565b60008060008060008060c0878903121561363557600080fd5b86359550602087013567ffffffffffffffff81111561365357600080fd5b61365f89828a016135fc565b96999698505050506040850135946060810135946080820135945060a09091013592509050565b60008060006060848603121561369b57600080fd5b83356136a6816133d0565b92506020840135915060408401356136bd816133d0565b809150509250925092565b6000602082840312156136da57600080fd5b813567ffffffffffffffff8111156136f157600080fd5b8201601f8101841361370257600080fd5b61260b84823560208401613586565b6000806040838503121561372457600080fd5b823561372f816133d0565b915060208301356134d7816133d0565b600080600080600060a0868803121561375757600080fd5b85359450602086013567ffffffffffffffff81111561377557600080fd5b613781888289016135fc565b959895975050505060408401359360608101359360809091013592509050565b600080604083850312156137b457600080fd5b82356137bf816133d0565b915060208301356134d7816134e2565b600080600080608085870312156137e557600080fd5b84356137f0816133d0565b93506020850135613800816133d0565b925060408501359150606085013567ffffffffffffffff81111561382357600080fd5b61382f878288016135fc565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061388457607f821691505b602082108114156138a557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156138d4576138d46138ab565b500190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b6000600019821415613919576139196138ab565b5060010190565b600082821015613932576139326138ab565b500390565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526015908201527413585e081c195c881b5a5b9d08195e18d959591959605a1b604082015260600190565b60008160001904831182151516156139b7576139b76138ab565b500290565b6020808252600f908201526e496e636f727265637420707269636560881b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600060208284031215613a4857600080fd5b5051919050565b60008351613a61818460208801613402565b835190830190613a75818360208801613402565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082613af557613af5613ad0565b500490565b600082613b0957613b09613ad0565b500690565b634e487b7160e01b600052603260045260246000fd5b600060208284031215613b3657600080fd5b815161219b816134e2565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613b749083018461342e565b9695505050505050565b600060208284031215613b9057600080fd5b815161219b8161339d565b634e487b7160e01b600052602160045260246000fd5b60008251613bc3818460208701613402565b919091019291505056fea2646970667358221220cd019a740293c38e91cef98f8416946eb5029d36382bbfd01a46ae53e61b1c4264736f6c634300080b0033

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

000000000000000000000000b43ae42c0030eef01ca50050d07bf2b355d62f26

-----Decoded View---------------
Arg [0] : _signerAddress (address): 0xb43aE42c0030eEf01cA50050D07bf2b355D62f26

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b43ae42c0030eef01ca50050d07bf2b355d62f26


Deployed Bytecode Sourcemap

51964:8154:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37774:300;;;;;;;;;;-1:-1:-1;37774:300:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37774:300:0;;;;;;;;59808:102;;;;;;;;;;-1:-1:-1;59808:102:0;;;;;:::i;:::-;;:::i;:::-;;38692:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40203:217::-;;;;;;;;;;-1:-1:-1;40203:217:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2080:32:1;;;2062:51;;2050:2;2035:18;40203:217:0;1916:203:1;52874:37:0;;;;;;;;;;;;;;;;;;;2270:25:1;;;2258:2;2243:18;52874:37:0;2124:177:1;39741:401:0;;;;;;;;;;-1:-1:-1;39741:401:0;;;;;:::i;:::-;;:::i;52509:29::-;;;;;;;;;;-1:-1:-1;52509:29:0;;;;-1:-1:-1;;;52509:29:0;;;;;;52953:39;;;;;;;;;;;;;;;;55877:242;;;;;;;;;;-1:-1:-1;55877:242:0;;;;;:::i;:::-;;:::i;58481:94::-;;;;;;;;;;-1:-1:-1;58481:94:0;;;;;:::i;:::-;;:::i;56929:113::-;;;;;;;;;;;;;:::i;55509:365::-;;;;;;;;;;-1:-1:-1;55509:365:0;;;;;:::i;:::-;;:::i;41067:330::-;;;;;;;;;;-1:-1:-1;41067:330:0;;;;;:::i;:::-;;:::i;53062:39::-;;;;;;;;;;-1:-1:-1;53062:39:0;;;;;;;;59386:258;;;;;;;;;;-1:-1:-1;59386:258:0;;;;;:::i;:::-;;:::i;58404:74::-;;;;;;;;;;-1:-1:-1;58404:74:0;;;;;:::i;:::-;;:::i;58327:::-;;;;;;;;;;-1:-1:-1;58327:74:0;;;;;:::i;:::-;;:::i;58802:170::-;;;;;;;;;;-1:-1:-1;58802:170:0;;;;;:::i;:::-;;:::i;41463:179::-;;;;;;;;;;-1:-1:-1;41463:179:0;;;;;:::i;:::-;;:::i;56692:231::-;;;;;;;;;;-1:-1:-1;56692:231:0;;;;;:::i;:::-;;:::i;52998:38::-;;;;;;;;;;;;;;;;54667:567;;;;;;;;;;-1:-1:-1;54667:567:0;;;;;:::i;:::-;;:::i;57045:95::-;;;;;;;;;;-1:-1:-1;57045:95:0;;;;;:::i;:::-;;:::i;52639:30::-;;;;;;;;;;;;;;;;57882:164;;;;;;;;;;-1:-1:-1;57882:164:0;;;;;:::i;:::-;;:::i;57261:97::-;;;;;;;;;;-1:-1:-1;57261:97:0;;;;;:::i;:::-;;:::i;38395:235::-;;;;;;;;;;-1:-1:-1;38395:235:0;;;;;:::i;:::-;;:::i;38133:205::-;;;;;;;;;;-1:-1:-1;38133:205:0;;;;;:::i;:::-;;:::i;14712:92::-;;;;;;;;;;;;;:::i;57737:142::-;;;;;;;;;;-1:-1:-1;57737:142:0;;;;;:::i;:::-;;:::i;52914:36::-;;;;;;;;;;;;;;;;52398:74;;;;;;;;;;-1:-1:-1;52398:74:0;;;;-1:-1:-1;;;;;52398:74:0;;;52672:48;;;;;;;;;;;;;;;;58052:153;;;;;;;;;;-1:-1:-1;58052:153:0;;;;;:::i;:::-;;:::i;53107:31::-;;;;;;;;;;-1:-1:-1;53107:31:0;;;;;;;;;;;59163:104;;;;;;;;;;-1:-1:-1;59163:104:0;;;;;:::i;:::-;;:::i;54196:465::-;;;;;;:::i;:::-;;:::i;14080:85::-;;;;;;;;;;-1:-1:-1;14152:6:0;;-1:-1:-1;;;;;14152:6:0;14080:85;;58244:80;;;;;;;;;;-1:-1:-1;58244:80:0;;;;;:::i;:::-;;:::i;57361:92::-;;;;;;;;;;-1:-1:-1;57361:92:0;;;;;:::i;:::-;;:::i;38854:102::-;;;;;;;;;;;;;:::i;55237:266::-;;;;;;:::i;:::-;;:::i;40487:290::-;;;;;;;;;;-1:-1:-1;40487:290:0;;;;;:::i;:::-;;:::i;58607:90::-;;;;;;;;;;-1:-1:-1;58607:90:0;;;;;:::i;:::-;;:::i;52544:34::-;;;;;;;;;;-1:-1:-1;52544:34:0;;;;-1:-1:-1;;;52544:34:0;;;;;;57570:139;;;;;;;;;;;;;:::i;41708:320::-;;;;;;;;;;-1:-1:-1;41708:320:0;;;;;:::i;:::-;;:::i;52726:31::-;;;;;;;;;;;;;;;;52823:48;;;;;;;;;;-1:-1:-1;52823:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;39022:329;;;;;;;;;;-1:-1:-1;39022:329:0;;;;;:::i;:::-;;:::i;59273:110::-;;;;;;;;;;-1:-1:-1;59273:110:0;;;;;:::i;:::-;;:::i;53172:28::-;;;;;;;;;;-1:-1:-1;53172:28:0;;;;;;;;;;;59647:155;;;;;;;;;;-1:-1:-1;59647:155:0;;;;;:::i;:::-;;:::i;52605:31::-;;;;;;;;;;;;;;;;58975:150;;;;;;;;;;-1:-1:-1;58975:150:0;;;;;:::i;:::-;;:::i;53141:28::-;;;;;;;;;;-1:-1:-1;53141:28:0;;;;;;;;;;;60015:101;;;;;;;;;;-1:-1:-1;60015:101:0;;;;;:::i;:::-;;:::i;57456:86::-;;;;;;;;;;;;;:::i;59916:93::-;;;;;;;;;;-1:-1:-1;59916:93:0;;;;;:::i;:::-;;:::i;40843:162::-;;;;;;;;;;-1:-1:-1;40843:162:0;;;;;:::i;:::-;-1:-1:-1;;;;;40963:25:0;;;40940:4;40963:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40843:162;14953:189;;;;;;;;;;-1:-1:-1;14953:189:0;;;;;:::i;:::-;;:::i;58703:96::-;;;;;;;;;;-1:-1:-1;58703:96:0;;;;;:::i;:::-;;:::i;37774:300::-;37876:4;-1:-1:-1;;;;;;37911:40:0;;-1:-1:-1;;;37911:40:0;;:104;;-1:-1:-1;;;;;;;37967:48:0;;-1:-1:-1;;;37967:48:0;37911:104;:156;;;-1:-1:-1;;;;;;;;;;36781:40:0;;;38031:36;37892:175;37774:300;-1:-1:-1;;37774:300:0:o;59808:102::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;;;;;;;;;59880:13:::1;:23:::0;;-1:-1:-1;;;;;;59880:23:0::1;-1:-1:-1::0;;;;;59880:23:0;;;::::1;::::0;;;::::1;::::0;;59808:102::o;38692:98::-;38746:13;38778:5;38771:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38692:98;:::o;40203:217::-;40279:7;43588:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43588:16:0;40298:73;;;;-1:-1:-1;;;40298:73:0;;10502:2:1;40298:73:0;;;10484:21:1;10541:2;10521:18;;;10514:30;10580:34;10560:18;;;10553:62;-1:-1:-1;;;10631:18:1;;;10624:42;10683:19;;40298:73:0;10300:408:1;40298:73:0;-1:-1:-1;40389:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40389:24:0;;40203:217::o;39741:401::-;39821:13;39837:23;39852:7;39837:14;:23::i;:::-;39821:39;;39884:5;-1:-1:-1;;;;;39878:11:0;:2;-1:-1:-1;;;;;39878:11:0;;;39870:57;;;;-1:-1:-1;;;39870:57:0;;10915:2:1;39870:57:0;;;10897:21:1;10954:2;10934:18;;;10927:30;10993:34;10973:18;;;10966:62;-1:-1:-1;;;11044:18:1;;;11037:31;11085:19;;39870:57:0;10713:397:1;39870:57:0;13566:10;-1:-1:-1;;;;;39959:21:0;;;;:62;;-1:-1:-1;39984:37:0;40001:5;13566:10;40843:162;:::i;39984:37::-;39938:165;;;;-1:-1:-1;;;39938:165:0;;11317:2:1;39938:165:0;;;11299:21:1;11356:2;11336:18;;;11329:30;11395:34;11375:18;;;11368:62;11466:26;11446:18;;;11439:54;11510:19;;39938:165:0;11115:420:1;39938:165:0;40114:21;40123:2;40127:7;40114:8;:21::i;:::-;39811:331;39741:401;;:::o;55877:242::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;55956:1:::1;55950:3;:7;55942:46;;;::::0;-1:-1:-1;;;55942:46:0;;11742:2:1;55942:46:0::1;::::0;::::1;11724:21:1::0;11781:2;11761:18;;;11754:30;11820:28;11800:18;;;11793:56;11866:18;;55942:46:0::1;11540:350:1::0;55942:46:0::1;56023:9;;56016:3;56000:13;;:19;;;;:::i;:::-;:32;;55992:63;;;;-1:-1:-1::0;;;55992:63:0::1;;;;;;;:::i;:::-;56064:9;56059:57;56083:3;56079:1;:7;56059:57;;;56098:13;56108:2;56098:9;:13::i;:::-;56088:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56059:57;;58481:94:::0;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;58543:19:::1;:28:::0;;-1:-1:-1;;58543:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58481:94::o;56929:113::-;56981:7;57023:12;;57007:13;;:28;;;;:::i;:::-;57000:35;;56929:113;:::o;55509:365::-;16192:1;16771:7;;:19;;16763:63;;;;-1:-1:-1;;;16763:63:0;;;;;;;:::i;:::-;16192:1;16901:7;:18;53876:8:::1;::::0;55590:3;;53876:8;;::::1;;;53868:34;;;::::0;-1:-1:-1;;;53868:34:0;;13339:2:1;53868:34:0::1;::::0;::::1;13321:21:1::0;13378:2;13358:18;;;13351:30;-1:-1:-1;;;13397:18:1;;;13390:43;13450:18;;53868:34:0::1;13137:337:1::0;53868:34:0::1;53921:10;;53914:3;:17;;53906:51;;;;-1:-1:-1::0;;;53906:51:0::1;;;;;;;:::i;:::-;53992:9;;53985:3;53969:13;;:19;;;;:::i;:::-;:32;;53961:63;;;;-1:-1:-1::0;;;53961:63:0::1;;;;;;;:::i;:::-;55613:14:::2;::::0;-1:-1:-1;;;55613:14:0;::::2;;;55605:44;;;::::0;-1:-1:-1;;;55605:44:0;;14031:2:1;55605:44:0::2;::::0;::::2;14013:21:1::0;14070:2;14050:18;;;14043:30;-1:-1:-1;;;14089:18:1;;;14082:47;14146:18;;55605:44:0::2;13829:341:1::0;55605:44:0::2;55683:5;55676:3;55661:12;;:18;;;;:::i;:::-;:27;55653:55;;;;-1:-1:-1::0;;;55653:55:0::2;;;;;;;:::i;:::-;55726:14;::::0;55719:73:::2;::::0;-1:-1:-1;;;;;55726:14:0::2;55759:10;55779:4;55786:5:::0;55719:39:::2;:73::i;:::-;55802:9;55797:74;55821:3;55817:1;:7;55797:74;;;55845:21;55855:10;55845:9;:21::i;:::-;55826:3:::0;::::2;::::0;::::2;:::i;:::-;;;;55797:74;;;-1:-1:-1::0;;16149:1:0;17074:7;:22;-1:-1:-1;;55509:365:0:o;41067:330::-;41256:41;13566:10;41275:12;41289:7;41256:18;:41::i;:::-;41248:103;;;;-1:-1:-1;;;41248:103:0;;;;;;;:::i;:::-;41362:28;41372:4;41378:2;41382:7;41362:9;:28::i;59386:258::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;59483:13:::1;;59469:10;:27;;59461:72;;;::::0;-1:-1:-1;;;59461:72:0;;15312:2:1;59461:72:0::1;::::0;::::1;15294:21:1::0;;;15331:18;;;15324:30;15390:34;15370:18;;;15363:62;15442:18;;59461:72:0::1;15110:356:1::0;59461:72:0::1;59565:9;;59551:10;:23;;59543:64;;;::::0;-1:-1:-1;;;59543:64:0;;15673:2:1;59543:64:0::1;::::0;::::1;15655:21:1::0;15712:2;15692:18;;;15685:30;15751;15731:18;;;15724:58;15799:18;;59543:64:0::1;15471:352:1::0;59543:64:0::1;59611:16;:29:::0;59386:258::o;58404:74::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;58459:8:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58459:15:0;;::::1;::::0;;;::::1;::::0;;58404:74::o;58327:::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;58382:8:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58382:15:0;;::::1;::::0;;;::::1;::::0;;58327:74::o;58802:170::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;58892:13:::1;;58878:10;:27;;58870:72;;;::::0;-1:-1:-1;;;58870:72:0;;15312:2:1;58870:72:0::1;::::0;::::1;15294:21:1::0;;;15331:18;;;15324:30;15390:34;15370:18;;;15363:62;15442:18;;58870:72:0::1;15110:356:1::0;58870:72:0::1;58946:9;:22:::0;58802:170::o;41463:179::-;41596:39;41613:4;41619:2;41623:7;41596:39;;;;;;;;;;;;:16;:39::i;56692:231::-;16192:1;16771:7;;:19;;16763:63;;;;-1:-1:-1;;;16763:63:0;;;;;;;:::i;:::-;16192:1;16901:7;:18;56758:8:::1;::::0;;;::::1;;;56750:34;;;::::0;-1:-1:-1;;;56750:34:0;;16030:2:1;56750:34:0::1;::::0;::::1;16012:21:1::0;16069:2;16049:18;;;16042:30;-1:-1:-1;;;16088:18:1;;;16081:43;16141:18;;56750:34:0::1;15828:337:1::0;56750:34:0::1;56796:41;13566:10:::0;56815:12:::1;13487:96:::0;56796:41:::1;56788:86;;;::::0;-1:-1:-1;;;56788:86:0;;16372:2:1;56788:86:0::1;::::0;::::1;16354:21:1::0;;;16391:18;;;16384:30;16450:34;16430:18;;;16423:62;16502:18;;56788:86:0::1;16170:356:1::0;56788:86:0::1;56900:1;56884:12;;:17;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;56905:14:0::1;::::0;-1:-1:-1;56911:7:0;56905:5:::1;:14::i;:::-;-1:-1:-1::0;16149:1:0;17074:7;:22;56692:231::o;54667:567::-;16192:1;16771:7;;:19;;16763:63;;;;-1:-1:-1;;;16763:63:0;;;;;;;:::i;:::-;16192:1;16901:7;:18;53324:11:::1;::::0;54879:4;;54885:3;;54890;;54895;;54900:9;;53324:11:::1;::::0;::::1;;;53316:40;;;::::0;-1:-1:-1;;;53316:40:0;;16733:2:1;53316:40:0::1;::::0;::::1;16715:21:1::0;16772:2;16752:18;;;16745:30;-1:-1:-1;;;16791:18:1;;;16784:46;16847:18;;53316:40:0::1;16531:340:1::0;53316:40:0::1;53374:28;53392:4;53398:3;53374:17;:28::i;:::-;53366:55;;;::::0;-1:-1:-1;;;53366:55:0;;17078:2:1;53366:55:0::1;::::0;::::1;17060:21:1::0;17117:2;17097:18;;;17090:30;-1:-1:-1;;;17136:18:1;;;17129:44;17190:18;;53366:55:0::1;16876:338:1::0;53366:55:0::1;53485:4;53433:48;53449:10;53461:3;53466;53471:9;53433:15;:48::i;:::-;:56;53425:86;;;::::0;-1:-1:-1;;;53425:86:0;;17421:2:1;53425:86:0::1;::::0;::::1;17403:21:1::0;17460:2;17440:18;;;17433:30;-1:-1:-1;;;17479:18:1;;;17472:47;17536:18;;53425:86:0::1;17219:341:1::0;53425:86:0::1;53542:15;53529:9;:28;;53521:61;;;::::0;-1:-1:-1;;;53521:61:0;;17767:2:1;53521:61:0::1;::::0;::::1;17749:21:1::0;17806:2;17786:18;;;17779:30;-1:-1:-1;;;17825:18:1;;;17818:50;17885:18;;53521:61:0::1;17565:344:1::0;53521:61:0::1;53601:17;;53594:3;:24;;53586:58;;;;-1:-1:-1::0;;;53586:58:0::1;;;;;;;:::i;:::-;53676:10;53662:25;::::0;;;:13:::1;:25;::::0;;;;;53697:3;;53662:31:::1;::::0;53690:3;;53662:31:::1;:::i;:::-;:38;;53654:74;;;::::0;-1:-1:-1;;;53654:74:0;;18116:2:1;53654:74:0::1;::::0;::::1;18098:21:1::0;18155:2;18135:18;;;18128:30;-1:-1:-1;;;18174:18:1;;;18167:53;18237:18;;53654:74:0::1;17914:347:1::0;53654:74:0::1;53763:16;;53756:3;53740:13;;:19;;;;:::i;:::-;:39;;53732:70;;;;-1:-1:-1::0;;;53732:70:0::1;;;;;;;:::i;:::-;54929:14:::2;::::0;-1:-1:-1;;;54929:14:0;::::2;;;54921:44;;;::::0;-1:-1:-1;;;54921:44:0;;14031:2:1;54921:44:0::2;::::0;::::2;14013:21:1::0;14070:2;14050:18;;;14043:30;-1:-1:-1;;;14089:18:1;;;14082:47;14146:18;;54921:44:0::2;13829:341:1::0;54921:44:0::2;55006:5;54999:3;54977:19;;:25;;;;:::i;:::-;:34;54969:62;;;;-1:-1:-1::0;;;54969:62:0::2;;;;;;;:::i;:::-;55049:14;::::0;55042:73:::2;::::0;-1:-1:-1;;;;;55049:14:0::2;55082:10;55102:4;55109:5:::0;55042:39:::2;:73::i;:::-;55140:10;55126:25;::::0;;;:13:::2;:25;::::0;;;;:32;;55155:3;;55126:25;:32:::2;::::0;55155:3;;55126:32:::2;:::i;:::-;::::0;;;-1:-1:-1;55168:9:0::2;::::0;-1:-1:-1;55163:65:0::2;55187:3;55183:1;:7;55163:65;;;55202:21;55212:10;55202:9;:21::i;:::-;55192:3:::0;::::2;::::0;::::2;:::i;:::-;;;;55163:65;;;-1:-1:-1::0;;16149:1:0;17074:7;:22;-1:-1:-1;;;;;;;;;;54667:567:0:o;57045:95::-;57102:4;43588:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43588:16:0;:30;;57119:17;43500:125;57882:164;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;57980:59:::1;::::0;-1:-1:-1;;;57980:59:0;;58018:4:::1;57980:59;::::0;::::1;18607:34:1::0;-1:-1:-1;;;;;18677:15:1;;;18657:18;;;18650:43;18709:18;;;18702:34;;;58033:1:0::1;18752:18:1::0;;;18745:34;18587:3;18795:19;;;18788:32;-1:-1:-1;18836:19:1;;;18829:30;57980:29:0;::::1;::::0;::::1;::::0;18876:19:1;;57980:59:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;57882:164:::0;;;:::o;57261:97::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;57328:26;;::::1;::::0;:13:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57261:97:::0;:::o;38395:235::-;38467:7;38502:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38502:16:0;38536:19;38528:73;;;;-1:-1:-1;;;38528:73:0;;19108:2:1;38528:73:0;;;19090:21:1;19147:2;19127:18;;;19120:30;19186:34;19166:18;;;19159:62;-1:-1:-1;;;19237:18:1;;;19230:39;19286:19;;38528:73:0;18906:405:1;38133:205:0;38205:7;-1:-1:-1;;;;;38232:19:0;;38224:74;;;;-1:-1:-1;;;38224:74:0;;19518:2:1;38224:74:0;;;19500:21:1;19557:2;19537:18;;;19530:30;19596:34;19576:18;;;19569:62;-1:-1:-1;;;19647:18:1;;;19640:40;19697:19;;38224:74:0;19316:406:1;38224:74:0;-1:-1:-1;;;;;;38315:16:0;;;;;:9;:16;;;;;;;38133:205::o;14712:92::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;14776:21:::1;14794:1;14776:9;:21::i;:::-;14712:92::o:0;57737:142::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;57839:35:::1;::::0;-1:-1:-1;;;57839:35:0;;57868:4:::1;57839:35;::::0;::::1;2062:51:1::0;57811:64:0::1;::::0;57835:2;;-1:-1:-1;;;;;57839:20:0;::::1;::::0;::::1;::::0;2035:18:1;;57839:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;57811:23:0;::::1;::::0;:64;:23:::1;:64::i;58052:153::-:0;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;58147:51:::1;::::0;-1:-1:-1;;;58147:51:0;;58184:4:::1;58147:51;::::0;::::1;20156:34:1::0;-1:-1:-1;;;;;20226:15:1;;;20206:18;;;20199:43;20258:18;;;20251:34;;;58147:28:0;::::1;::::0;::::1;::::0;20091:18:1;;58147:51:0::1;19916:375:1::0;59163:104:0;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;59232:20:::1;:31:::0;59163:104::o;54196:465::-;16192:1;16771:7;;:19;;16763:63;;;;-1:-1:-1;;;16763:63:0;;;;;;;:::i;:::-;16192:1;16901:7;:18;53324:11:::1;::::0;54383:4;;54389:3;;54394;;54399;;54404:9;;53324:11:::1;::::0;::::1;;;53316:40;;;::::0;-1:-1:-1;;;53316:40:0;;16733:2:1;53316:40:0::1;::::0;::::1;16715:21:1::0;16772:2;16752:18;;;16745:30;-1:-1:-1;;;16791:18:1;;;16784:46;16847:18;;53316:40:0::1;16531:340:1::0;53316:40:0::1;53374:28;53392:4;53398:3;53374:17;:28::i;:::-;53366:55;;;::::0;-1:-1:-1;;;53366:55:0;;17078:2:1;53366:55:0::1;::::0;::::1;17060:21:1::0;17117:2;17097:18;;;17090:30;-1:-1:-1;;;17136:18:1;;;17129:44;17190:18;;53366:55:0::1;16876:338:1::0;53366:55:0::1;53485:4;53433:48;53449:10;53461:3;53466;53471:9;53433:15;:48::i;:::-;:56;53425:86;;;::::0;-1:-1:-1;;;53425:86:0;;17421:2:1;53425:86:0::1;::::0;::::1;17403:21:1::0;17460:2;17440:18;;;17433:30;-1:-1:-1;;;17479:18:1;;;17472:47;17536:18;;53425:86:0::1;17219:341:1::0;53425:86:0::1;53542:15;53529:9;:28;;53521:61;;;::::0;-1:-1:-1;;;53521:61:0;;17767:2:1;53521:61:0::1;::::0;::::1;17749:21:1::0;17806:2;17786:18;;;17779:30;-1:-1:-1;;;17825:18:1;;;17818:50;17885:18;;53521:61:0::1;17565:344:1::0;53521:61:0::1;53601:17;;53594:3;:24;;53586:58;;;;-1:-1:-1::0;;;53586:58:0::1;;;;;;;:::i;:::-;53676:10;53662:25;::::0;;;:13:::1;:25;::::0;;;;;53697:3;;53662:31:::1;::::0;53690:3;;53662:31:::1;:::i;:::-;:38;;53654:74;;;::::0;-1:-1:-1;;;53654:74:0;;18116:2:1;53654:74:0::1;::::0;::::1;18098:21:1::0;18155:2;18135:18;;;18128:30;-1:-1:-1;;;18174:18:1;;;18167:53;18237:18;;53654:74:0::1;17914:347:1::0;53654:74:0::1;53763:16;;53756:3;53740:13;;:19;;;;:::i;:::-;:39;;53732:70;;;;-1:-1:-1::0;;;53732:70:0::1;;;;;;;:::i;:::-;54433:10:::2;::::0;-1:-1:-1;;;54433:10:0;::::2;;;54425:38;;;::::0;-1:-1:-1;;;54425:38:0;;20498:2:1;54425:38:0::2;::::0;::::2;20480:21:1::0;20537:2;20517:18;;;20510:30;-1:-1:-1;;;20556:18:1;;;20549:45;20611:18;;54425:38:0::2;20296:339:1::0;54425:38:0::2;54505:9;54498:3;54475:20;;:26;;;;:::i;:::-;:39;54467:67;;;;-1:-1:-1::0;;;54467:67:0::2;;;;;;;:::i;:::-;54567:10;54553:25;::::0;;;:13:::2;:25;::::0;;;;:32;;54582:3;;54553:25;:32:::2;::::0;54582:3;;54553:32:::2;:::i;:::-;::::0;;;-1:-1:-1;54595:9:0::2;::::0;-1:-1:-1;54590:65:0::2;54614:3;54610:1;:7;54590:65;;;54629:21;54639:10;54629:9;:21::i;:::-;54619:3:::0;::::2;::::0;::::2;:::i;:::-;;;;54590:65;;;-1:-1:-1::0;;16149:1:0;17074:7;:22;-1:-1:-1;;;;;;;;;54196:465:0:o;58244:80::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;58302:11:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;58302:18:0;;::::1;::::0;;;::::1;::::0;;58244:80::o;57361:92::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;57428:21;;::::1;::::0;:12:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;38854:102::-:0;38910:13;38942:7;38935:14;;;;;:::i;55237:266::-;16192:1;16771:7;;:19;;16763:63;;;;-1:-1:-1;;;16763:63:0;;;;;;;:::i;:::-;16192:1;16901:7;:18;53876:8:::1;::::0;55304:3;;53876:8;;::::1;;;53868:34;;;::::0;-1:-1:-1;;;53868:34:0;;13339:2:1;53868:34:0::1;::::0;::::1;13321:21:1::0;13378:2;13358:18;;;13351:30;-1:-1:-1;;;13397:18:1;;;13390:43;13450:18;;53868:34:0::1;13137:337:1::0;53868:34:0::1;53921:10;;53914:3;:17;;53906:51;;;;-1:-1:-1::0;;;53906:51:0::1;;;;;;;:::i;:::-;53992:9;;53985:3;53969:13;;:19;;;;:::i;:::-;:32;;53961:63;;;;-1:-1:-1::0;;;53961:63:0::1;;;;;;;:::i;:::-;55327:10:::2;::::0;-1:-1:-1;;;55327:10:0;::::2;;;55319:38;;;::::0;-1:-1:-1;;;55319:38:0;;20498:2:1;55319:38:0::2;::::0;::::2;20480:21:1::0;20537:2;20517:18;;;20510:30;-1:-1:-1;;;20556:18:1;;;20549:45;20611:18;;55319:38:0::2;20296:339:1::0;55319:38:0::2;55392:9;55385:3;55369:13;;:19;;;;:::i;:::-;:32;55361:60;;;;-1:-1:-1::0;;;55361:60:0::2;;;;;;;:::i;:::-;55431:9;55426:74;55450:3;55446:1;:7;55426:74;;;55474:21;55484:10;55474:9;:21::i;:::-;55455:3:::0;::::2;::::0;::::2;:::i;:::-;;;;55426:74;;;-1:-1:-1::0;;16149:1:0;17074:7;:22;-1:-1:-1;55237:266:0:o;40487:290::-;-1:-1:-1;;;;;40589:24:0;;13566:10;40589:24;;40581:62;;;;-1:-1:-1;;;40581:62:0;;20842:2:1;40581:62:0;;;20824:21:1;20881:2;20861:18;;;20854:30;20920:27;20900:18;;;20893:55;20965:18;;40581:62:0;20640:349:1;40581:62:0;13566:10;40654:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40654:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40654:53:0;;;;;;;;;;40722:48;;540:41:1;;;40654:42:0;;13566:10;40722:48;;513:18:1;40722:48:0;;;;;;;40487:290;;:::o;58607:90::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;58669:13:::1;:24:::0;58607:90::o;57570:139::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;57668:37:::1;::::0;57643:21:::1;::::0;57676:10:::1;::::0;57668:37;::::1;;;::::0;57643:21;;57625:15:::1;57668:37:::0;57625:15;57668:37;57643:21;57676:10;57668:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;41708:320:::0;41877:41;13566:10;41910:7;41877:18;:41::i;:::-;41869:103;;;;-1:-1:-1;;;41869:103:0;;;;;;;:::i;:::-;41982:39;41996:4;42002:2;42006:7;42015:5;41982:13;:39::i;:::-;41708:320;;;;:::o;39022:329::-;43565:4;43588:16;;;:7;:16;;;;;;39095:13;;-1:-1:-1;;;;;43588:16:0;39120:76;;;;-1:-1:-1;;;39120:76:0;;21196:2:1;39120:76:0;;;21178:21:1;21235:2;21215:18;;;21208:30;21274:34;21254:18;;;21247:62;-1:-1:-1;;;21325:18:1;;;21318:45;21380:19;;39120:76:0;20994:411:1;39120:76:0;39207:21;39231:10;:8;:10::i;:::-;39207:34;;39282:1;39264:7;39258:21;:25;:86;;;;;;;;;;;;;;;;;39310:7;39319:18;:7;:16;:18::i;:::-;39293:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39258:86;39251:93;39022:329;-1:-1:-1;;;39022:329:0:o;59273:110::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;59349:19:::1;:30:::0;59273:110::o;59647:155::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;59746:1:::1;59732:11;:15;59724:39;;;::::0;-1:-1:-1;;;59724:39:0;;22087:2:1;59724:39:0::1;::::0;::::1;22069:21:1::0;22126:2;22106:18;;;22099:30;-1:-1:-1;;;22145:18:1;;;22138:41;22196:18;;59724:39:0::1;21885:335:1::0;59724:39:0::1;59767:17;:31:::0;59647:155::o;58975:150::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;59067:1:::1;59053:11;:15;59045:48;;;::::0;-1:-1:-1;;;59045:48:0;;22427:2:1;59045:48:0::1;::::0;::::1;22409:21:1::0;22466:2;22446:18;;;22439:30;-1:-1:-1;;;22485:18:1;;;22478:50;22545:18;;59045:48:0::1;22225:344:1::0;59045:48:0::1;59097:10;:24:::0;58975:150::o;60015:101::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;60085:14:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;60085:24:0::1;-1:-1:-1::0;;;;60085:24:0;;::::1;::::0;;;::::1;::::0;;60015:101::o;57456:86::-;57500:13;57526:12;57519:19;;;;;:::i;59916:93::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;59982:10:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;59982:20:0::1;-1:-1:-1::0;;;;59982:20:0;;::::1;::::0;;;::::1;::::0;;59916:93::o;14953:189::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15041:22:0;::::1;15033:73;;;::::0;-1:-1:-1;;;15033:73:0;;22776:2:1;15033:73:0::1;::::0;::::1;22758:21:1::0;22815:2;22795:18;;;22788:30;22854:34;22834:18;;;22827:62;-1:-1:-1;;;22905:18:1;;;22898:36;22951:19;;15033:73:0::1;22574:402:1::0;15033:73:0::1;15116:19;15126:8;15116:9;:19::i;:::-;14953:189:::0;:::o;58703:96::-;14152:6;;-1:-1:-1;;;;;14152:6:0;13566:10;14292:23;14284:68;;;;-1:-1:-1;;;14284:68:0;;;;;;;:::i;:::-;58772:12:::1;:23:::0;58703:96::o;47186:171::-;47260:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;47260:29:0;-1:-1:-1;;;;;47260:29:0;;;;;;;;:24;;47313:23;47260:24;47313:14;:23::i;:::-;-1:-1:-1;;;;;47304:46:0;;;;;;;;;;;47186:171;;:::o;56125:124::-;56197:1;56180:13;;:18;;;;;;;:::i;:::-;;;;;;;;56208:34;56218:8;56228:13;;56208:9;:34::i;48959:241::-;49124:68;;-1:-1:-1;;;;;20174:15:1;;;49124:68:0;;;20156:34:1;20226:15;;20206:18;;;20199:43;20258:18;;;20251:34;;;49097:96:0;;49117:5;;-1:-1:-1;;;49147:27:0;20091:18:1;;49124:68:0;;;;-1:-1:-1;;49124:68:0;;;;;;;;;;;;;;-1:-1:-1;;;;;49124:68:0;-1:-1:-1;;;;;;49124:68:0;;;;;;;;;;49097:19;:96::i;43783:344::-;43876:4;43588:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43588:16:0;43892:73;;;;-1:-1:-1;;;43892:73:0;;23183:2:1;43892:73:0;;;23165:21:1;23222:2;23202:18;;;23195:30;23261:34;23241:18;;;23234:62;-1:-1:-1;;;23312:18:1;;;23305:42;23364:19;;43892:73:0;22981:408:1;43892:73:0;43975:13;43991:23;44006:7;43991:14;:23::i;:::-;43975:39;;44043:5;-1:-1:-1;;;;;44032:16:0;:7;-1:-1:-1;;;;;44032:16:0;;:51;;;;44076:7;-1:-1:-1;;;;;44052:31:0;:20;44064:7;44052:11;:20::i;:::-;-1:-1:-1;;;;;44052:31:0;;44032:51;:87;;;-1:-1:-1;;;;;;40963:25:0;;;40940:4;40963:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;44087:32;44024:96;43783:344;-1:-1:-1;;;;43783:344:0:o;46565:510::-;46719:4;-1:-1:-1;;;;;46692:31:0;:23;46707:7;46692:14;:23::i;:::-;-1:-1:-1;;;;;46692:31:0;;46684:85;;;;-1:-1:-1;;;46684:85:0;;23596:2:1;46684:85:0;;;23578:21:1;23635:2;23615:18;;;23608:30;23674:34;23654:18;;;23647:62;-1:-1:-1;;;23725:18:1;;;23718:39;23774:19;;46684:85:0;23394:405:1;46684:85:0;-1:-1:-1;;;;;46787:16:0;;46779:65;;;;-1:-1:-1;;;46779:65:0;;24006:2:1;46779:65:0;;;23988:21:1;24045:2;24025:18;;;24018:30;24084:34;24064:18;;;24057:62;-1:-1:-1;;;24135:18:1;;;24128:34;24179:19;;46779:65:0;23804:400:1;46779:65:0;46906:29;46923:1;46927:7;46906:8;:29::i;:::-;-1:-1:-1;;;;;46946:15:0;;;;;;:9;:15;;;;;:20;;46965:1;;46946:15;:20;;46965:1;;46946:20;:::i;:::-;;;;-1:-1:-1;;;;;;;46976:13:0;;;;;;:9;:13;;;;;:18;;46993:1;;46976:13;:18;;46993:1;;46976:18;:::i;:::-;;;;-1:-1:-1;;47004:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47004:21:0;-1:-1:-1;;;;;47004:21:0;;;;;;;;;47041:27;;47004:16;;47041:27;;;;;;;46565:510;;;:::o;45952:289::-;46011:13;46027:23;46042:7;46027:14;:23::i;:::-;46011:39;;46088:29;46105:1;46109:7;46088:8;:29::i;:::-;-1:-1:-1;;;;;46128:16:0;;;;;;:9;:16;;;;;:21;;46148:1;;46128:16;:21;;46148:1;;46128:21;:::i;:::-;;;;-1:-1:-1;;46166:16:0;;;;:7;:16;;;;;;46159:23;;-1:-1:-1;;;;;;46159:23:0;;;46198:36;46174:7;;46166:16;-1:-1:-1;;;;;46198:36:0;;;;;46166:16;;46198:36;46001:240;45952:289;:::o;56541:148::-;56628:4;56662:23;:4;56675:9;56662:12;:23::i;:::-;56645:13;;-1:-1:-1;;;;;56645:40:0;;;:13;;:40;;56541:148;-1:-1:-1;;;56541:148:0:o;56255:283::-;56468:45;;;24442:2:1;24438:15;;;;-1:-1:-1;;24434:53:1;56468:45:0;;;;24422:66:1;;;;24504:12;;;24497:28;;;;24541:12;;;24534:28;;;;24578:12;;;;24571:28;;;;56468:45:0;;;;;;;;;;24615:13:1;;;56468:45:0;;56458:56;;;;;;24881:66:1;56405:110:0;;;24869:79:1;24964:12;;;;24957:28;;;;56405:110:0;;;;;;;;;;25001:12:1;;;;56405:110:0;;56391:128;;;;;;56255:283::o;15148:169::-;15222:6;;;-1:-1:-1;;;;;15238:17:0;;;-1:-1:-1;;;;;;15238:17:0;;;;;;;15270:40;;15222:6;;;15238:17;15222:6;;15270:40;;15203:16;;15270:40;15193:124;15148:169;:::o;48748:205::-;48887:58;;-1:-1:-1;;;;;25216:32:1;;48887:58:0;;;25198:51:1;25265:18;;;25258:34;;;48860:86:0;;48880:5;;-1:-1:-1;;;48910:23:0;25171:18:1;;48887:58:0;25024:274:1;42890:307:0;43041:28;43051:4;43057:2;43061:7;43041:9;:28::i;:::-;43087:48;43110:4;43116:2;43120:7;43129:5;43087:22;:48::i;:::-;43079:111;;;;-1:-1:-1;;;43079:111:0;;;;;;;:::i;57146:112::-;57206:13;57238;57231:20;;;;;:::i;34865:703::-;34921:13;35138:10;35134:51;;-1:-1:-1;;35164:10:0;;;;;;;;;;;;-1:-1:-1;;;35164:10:0;;;;;34865:703::o;35134:51::-;35209:5;35194:12;35248:75;35255:9;;35248:75;;35280:8;;;;:::i;:::-;;-1:-1:-1;35302:10:0;;-1:-1:-1;35310:2:0;35302:10;;:::i;:::-;;;35248:75;;;35332:19;35364:6;35354:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35354:17:0;;35332:39;;35381:150;35388:10;;35381:150;;35414:11;35424:1;35414:11;;:::i;:::-;;-1:-1:-1;35482:10:0;35490:2;35482:5;:10;:::i;:::-;35469:24;;:2;:24;:::i;:::-;35456:39;;35439:6;35446;35439:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;35439:56:0;;;;;;;;-1:-1:-1;35509:11:0;35518:2;35509:11;;:::i;:::-;;;35381:150;;44457:108;44532:26;44542:2;44546:7;44532:26;;;;;;;;;;;;:9;:26::i;51254:706::-;51673:23;51699:69;51727:4;51699:69;;;;;;;;;;;;;;;;;51707:5;-1:-1:-1;;;;;51699:27:0;;;:69;;;;;:::i;:::-;51782:17;;51673:95;;-1:-1:-1;51782:21:0;51778:176;;51877:10;51866:30;;;;;;;;;;;;:::i;:::-;51858:85;;;;-1:-1:-1;;;51858:85:0;;26680:2:1;51858:85:0;;;26662:21:1;26719:2;26699:18;;;26692:30;26758:34;26738:18;;;26731:62;-1:-1:-1;;;26809:18:1;;;26802:40;26859:19;;51858:85:0;26478:406:1;30134:227:0;30212:7;30232:17;30251:18;30273:27;30284:4;30290:9;30273:10;:27::i;:::-;30231:69;;;;30310:18;30322:5;30310:11;:18::i;:::-;-1:-1:-1;30345:9:0;30134:227;-1:-1:-1;;;30134:227:0:o;47910:778::-;48060:4;-1:-1:-1;;;;;48080:13:0;;19166:20;19212:8;48076:606;;48115:72;;-1:-1:-1;;;48115:72:0;;-1:-1:-1;;;;;48115:36:0;;;;;:72;;13566:10;;48166:4;;48172:7;;48181:5;;48115:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48115:72:0;;;;;;;;-1:-1:-1;;48115:72:0;;;;;;;;;;;;:::i;:::-;;;48111:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48354:13:0;;48350:266;;48396:60;;-1:-1:-1;;;48396:60:0;;;;;;;:::i;48350:266::-;48568:6;48562:13;48553:6;48549:2;48545:15;48538:38;48111:519;-1:-1:-1;;;;;;48237:51:0;-1:-1:-1;;;48237:51:0;;-1:-1:-1;48230:58:0;;48076:606;-1:-1:-1;48667:4:0;48660:11;;44786:311;44911:18;44917:2;44921:7;44911:5;:18::i;:::-;44960:54;44991:1;44995:2;44999:7;45008:5;44960:22;:54::i;:::-;44939:151;;;;-1:-1:-1;;;44939:151:0;;;;;;;:::i;21593:223::-;21726:12;21757:52;21779:6;21787:4;21793:1;21796:12;21757:21;:52::i;28069:1279::-;28150:7;28159:12;28380:9;:16;28400:2;28380:22;28376:966;;;28669:4;28654:20;;28648:27;28718:4;28703:20;;28697:27;28775:4;28760:20;;28754:27;28418:9;28746:36;28816:25;28827:4;28746:36;28648:27;28697;28816:10;:25::i;:::-;28809:32;;;;;;;;;28376:966;28862:9;:16;28882:2;28862:22;28858:484;;;29131:4;29116:20;;29110:27;29181:4;29166:20;;29160:27;29221:23;29232:4;29110:27;29160;29221:10;:23::i;:::-;29214:30;;;;;;;;28858:484;-1:-1:-1;29291:1:0;;-1:-1:-1;29295:35:0;28858:484;28069:1279;;;;;:::o;26374:631::-;26451:20;26442:5;:29;;;;;;;;:::i;:::-;;26438:561;;;26374:631;:::o;26438:561::-;26547:29;26538:5;:38;;;;;;;;:::i;:::-;;26534:465;;;26592:34;;-1:-1:-1;;;26592:34:0;;27971:2:1;26592:34:0;;;27953:21:1;28010:2;27990:18;;;27983:30;28049:26;28029:18;;;28022:54;28093:18;;26592:34:0;27769:348:1;26534:465:0;26656:35;26647:5;:44;;;;;;;;:::i;:::-;;26643:356;;;26707:41;;-1:-1:-1;;;26707:41:0;;28324:2:1;26707:41:0;;;28306:21:1;28363:2;28343:18;;;28336:30;28402:33;28382:18;;;28375:61;28453:18;;26707:41:0;28122:355:1;26643:356:0;26778:30;26769:5;:39;;;;;;;;:::i;:::-;;26765:234;;;26824:44;;-1:-1:-1;;;26824:44:0;;28684:2:1;26824:44:0;;;28666:21:1;28723:2;28703:18;;;28696:30;28762:34;28742:18;;;28735:62;-1:-1:-1;;;28813:18:1;;;28806:32;28855:19;;26824:44:0;28482:398:1;26765:234:0;26898:30;26889:5;:39;;;;;;;;:::i;:::-;;26885:114;;;26944:44;;-1:-1:-1;;;26944:44:0;;29087:2:1;26944:44:0;;;29069:21:1;29126:2;29106:18;;;29099:30;29165:34;29145:18;;;29138:62;-1:-1:-1;;;29216:18:1;;;29209:32;29258:19;;26944:44:0;28885:398:1;45419:316:0;-1:-1:-1;;;;;45498:16:0;;45490:61;;;;-1:-1:-1;;;45490:61:0;;29490:2:1;45490:61:0;;;29472:21:1;;;29509:18;;;29502:30;29568:34;29548:18;;;29541:62;29620:18;;45490:61:0;29288:356:1;45490:61:0;43565:4;43588:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43588:16:0;:30;45561:58;;;;-1:-1:-1;;;45561:58:0;;29851:2:1;45561:58:0;;;29833:21:1;29890:2;29870:18;;;29863:30;29929;29909:18;;;29902:58;29977:18;;45561:58:0;29649:352:1;45561:58:0;-1:-1:-1;;;;;45630:13:0;;;;;;:9;:13;;;;;:18;;45647:1;;45630:13;:18;;45647:1;;45630:18;:::i;:::-;;;;-1:-1:-1;;45658:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;45658:21:0;-1:-1:-1;;;;;45658:21:0;;;;;;;;45695:33;;45658:16;;;45695:33;;45658:16;;45695:33;45419:316;;:::o;22680:499::-;22845:12;22902:5;22877:21;:30;;22869:81;;;;-1:-1:-1;;;22869:81:0;;30208:2:1;22869:81:0;;;30190:21:1;30247:2;30227:18;;;30220:30;30286:34;30266:18;;;30259:62;-1:-1:-1;;;30337:18:1;;;30330:36;30383:19;;22869:81:0;30006:402:1;22869:81:0;19166:20;;22960:60;;;;-1:-1:-1;;;22960:60:0;;30615:2:1;22960:60:0;;;30597:21:1;30654:2;30634:18;;;30627:30;30693:31;30673:18;;;30666:59;30742:18;;22960:60:0;30413:353:1;22960:60:0;23032:12;23046:23;23073:6;-1:-1:-1;;;;;23073:11:0;23092:5;23099:4;23073:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23031:73;;;;23121:51;23138:7;23147:10;23159:12;23121:16;:51::i;:::-;23114:58;22680:499;-1:-1:-1;;;;;;;22680:499:0:o;31585:1603::-;31711:7;;32635:66;32622:79;;32618:161;;;-1:-1:-1;32733:1:0;;-1:-1:-1;32737:30:0;32717:51;;32618:161;32792:1;:7;;32797:2;32792:7;;:18;;;;;32803:1;:7;;32808:2;32803:7;;32792:18;32788:100;;;-1:-1:-1;32842:1:0;;-1:-1:-1;32846:30:0;32826:51;;32788:100;32999:24;;;32982:14;32999:24;;;;;;;;;31277:25:1;;;31350:4;31338:17;;31318:18;;;31311:45;;;;31372:18;;;31365:34;;;31415:18;;;31408:34;;;32999:24:0;;31249:19:1;;32999:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32999:24:0;;-1:-1:-1;;32999:24:0;;;-1:-1:-1;;;;;;;33037:20:0;;33033:101;;33089:1;33093:29;33073:50;;;;;;;33033:101;33152:6;-1:-1:-1;33160:20:0;;-1:-1:-1;31585:1603:0;;;;;;;;:::o;30615:379::-;30725:7;;-1:-1:-1;;;;;30822:75:0;;30923:3;30919:12;;;30933:2;30915:21;30962:25;30973:4;30915:21;30982:1;30822:75;30962:10;:25::i;:::-;30955:32;;;;;;30615:379;;;;;;:::o;25293:692::-;25439:12;25467:7;25463:516;;;-1:-1:-1;25497:10:0;25490:17;;25463:516;25608:17;;:21;25604:365;;25802:10;25796:17;25862:15;25849:10;25845:2;25841:19;25834:44;25604:365;25941:12;25934:20;;-1:-1:-1;;;25934:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:131::-;-1:-1:-1;;;;;667:31:1;;657:42;;647:70;;713:1;710;703:12;728:247;787:6;840:2;828:9;819:7;815:23;811:32;808:52;;;856:1;853;846:12;808:52;895:9;882:23;914:31;939:5;914:31;:::i;980:258::-;1052:1;1062:113;1076:6;1073:1;1070:13;1062:113;;;1152:11;;;1146:18;1133:11;;;1126:39;1098:2;1091:10;1062:113;;;1193:6;1190:1;1187:13;1184:48;;;-1:-1:-1;;1228:1:1;1210:16;;1203:27;980:258::o;1243:::-;1285:3;1323:5;1317:12;1350:6;1345:3;1338:19;1366:63;1422:6;1415:4;1410:3;1406:14;1399:4;1392:5;1388:16;1366:63;:::i;:::-;1483:2;1462:15;-1:-1:-1;;1458:29:1;1449:39;;;;1490:4;1445:50;;1243:258;-1:-1:-1;;1243:258:1:o;1506:220::-;1655:2;1644:9;1637:21;1618:4;1675:45;1716:2;1705:9;1701:18;1693:6;1675:45;:::i;1731:180::-;1790:6;1843:2;1831:9;1822:7;1818:23;1814:32;1811:52;;;1859:1;1856;1849:12;1811:52;-1:-1:-1;1882:23:1;;1731:180;-1:-1:-1;1731:180:1:o;2306:315::-;2374:6;2382;2435:2;2423:9;2414:7;2410:23;2406:32;2403:52;;;2451:1;2448;2441:12;2403:52;2490:9;2477:23;2509:31;2534:5;2509:31;:::i;:::-;2559:5;2611:2;2596:18;;;;2583:32;;-1:-1:-1;;;2306:315:1:o;2626:::-;2694:6;2702;2755:2;2743:9;2734:7;2730:23;2726:32;2723:52;;;2771:1;2768;2761:12;2723:52;2807:9;2794:23;2784:33;;2867:2;2856:9;2852:18;2839:32;2880:31;2905:5;2880:31;:::i;:::-;2930:5;2920:15;;;2626:315;;;;;:::o;2946:118::-;3032:5;3025:13;3018:21;3011:5;3008:32;2998:60;;3054:1;3051;3044:12;3069:241;3125:6;3178:2;3166:9;3157:7;3153:23;3149:32;3146:52;;;3194:1;3191;3184:12;3146:52;3233:9;3220:23;3252:28;3274:5;3252:28;:::i;3315:248::-;3383:6;3391;3444:2;3432:9;3423:7;3419:23;3415:32;3412:52;;;3460:1;3457;3450:12;3412:52;-1:-1:-1;;3483:23:1;;;3553:2;3538:18;;;3525:32;;-1:-1:-1;3315:248:1:o;3568:456::-;3645:6;3653;3661;3714:2;3702:9;3693:7;3689:23;3685:32;3682:52;;;3730:1;3727;3720:12;3682:52;3769:9;3756:23;3788:31;3813:5;3788:31;:::i;:::-;3838:5;-1:-1:-1;3895:2:1;3880:18;;3867:32;3908:33;3867:32;3908:33;:::i;:::-;3568:456;;3960:7;;-1:-1:-1;;;4014:2:1;3999:18;;;;3986:32;;3568:456::o;4029:127::-;4090:10;4085:3;4081:20;4078:1;4071:31;4121:4;4118:1;4111:15;4145:4;4142:1;4135:15;4161:631;4225:5;4255:18;4296:2;4288:6;4285:14;4282:40;;;4302:18;;:::i;:::-;4377:2;4371:9;4345:2;4431:15;;-1:-1:-1;;4427:24:1;;;4453:2;4423:33;4419:42;4407:55;;;4477:18;;;4497:22;;;4474:46;4471:72;;;4523:18;;:::i;:::-;4563:10;4559:2;4552:22;4592:6;4583:15;;4622:6;4614;4607:22;4662:3;4653:6;4648:3;4644:16;4641:25;4638:45;;;4679:1;4676;4669:12;4638:45;4729:6;4724:3;4717:4;4709:6;4705:17;4692:44;4784:1;4777:4;4768:6;4760;4756:19;4752:30;4745:41;;;;4161:631;;;;;:::o;4797:220::-;4839:5;4892:3;4885:4;4877:6;4873:17;4869:27;4859:55;;4910:1;4907;4900:12;4859:55;4932:79;5007:3;4998:6;4985:20;4978:4;4970:6;4966:17;4932:79;:::i;5022:663::-;5135:6;5143;5151;5159;5167;5175;5228:3;5216:9;5207:7;5203:23;5199:33;5196:53;;;5245:1;5242;5235:12;5196:53;5281:9;5268:23;5258:33;;5342:2;5331:9;5327:18;5314:32;5369:18;5361:6;5358:30;5355:50;;;5401:1;5398;5391:12;5355:50;5424:49;5465:7;5456:6;5445:9;5441:22;5424:49;:::i;:::-;5022:663;;5414:59;;-1:-1:-1;;;;5520:2:1;5505:18;;5492:32;;5571:2;5556:18;;5543:32;;5622:3;5607:19;;5594:33;;-1:-1:-1;5674:3:1;5659:19;;;5646:33;;-1:-1:-1;5022:663:1;-1:-1:-1;5022:663:1:o;5690:472::-;5783:6;5791;5799;5852:2;5840:9;5831:7;5827:23;5823:32;5820:52;;;5868:1;5865;5858:12;5820:52;5907:9;5894:23;5926:31;5951:5;5926:31;:::i;:::-;5976:5;-1:-1:-1;6028:2:1;6013:18;;6000:32;;-1:-1:-1;6084:2:1;6069:18;;6056:32;6097:33;6056:32;6097:33;:::i;:::-;6149:7;6139:17;;;5690:472;;;;;:::o;6167:450::-;6236:6;6289:2;6277:9;6268:7;6264:23;6260:32;6257:52;;;6305:1;6302;6295:12;6257:52;6345:9;6332:23;6378:18;6370:6;6367:30;6364:50;;;6410:1;6407;6400:12;6364:50;6433:22;;6486:4;6478:13;;6474:27;-1:-1:-1;6464:55:1;;6515:1;6512;6505:12;6464:55;6538:73;6603:7;6598:2;6585:16;6580:2;6576;6572:11;6538:73;:::i;6622:402::-;6704:6;6712;6765:2;6753:9;6744:7;6740:23;6736:32;6733:52;;;6781:1;6778;6771:12;6733:52;6820:9;6807:23;6839:31;6864:5;6839:31;:::i;:::-;6889:5;-1:-1:-1;6946:2:1;6931:18;;6918:32;6959:33;6918:32;6959:33;:::i;7505:594::-;7609:6;7617;7625;7633;7641;7694:3;7682:9;7673:7;7669:23;7665:33;7662:53;;;7711:1;7708;7701:12;7662:53;7747:9;7734:23;7724:33;;7808:2;7797:9;7793:18;7780:32;7835:18;7827:6;7824:30;7821:50;;;7867:1;7864;7857:12;7821:50;7890:49;7931:7;7922:6;7911:9;7907:22;7890:49;:::i;:::-;7505:594;;7880:59;;-1:-1:-1;;;;7986:2:1;7971:18;;7958:32;;8037:2;8022:18;;8009:32;;8088:3;8073:19;;;8060:33;;-1:-1:-1;7505:594:1;-1:-1:-1;7505:594:1:o;8104:382::-;8169:6;8177;8230:2;8218:9;8209:7;8205:23;8201:32;8198:52;;;8246:1;8243;8236:12;8198:52;8285:9;8272:23;8304:31;8329:5;8304:31;:::i;:::-;8354:5;-1:-1:-1;8411:2:1;8396:18;;8383:32;8424:30;8383:32;8424:30;:::i;8491:665::-;8586:6;8594;8602;8610;8663:3;8651:9;8642:7;8638:23;8634:33;8631:53;;;8680:1;8677;8670:12;8631:53;8719:9;8706:23;8738:31;8763:5;8738:31;:::i;:::-;8788:5;-1:-1:-1;8845:2:1;8830:18;;8817:32;8858:33;8817:32;8858:33;:::i;:::-;8910:7;-1:-1:-1;8964:2:1;8949:18;;8936:32;;-1:-1:-1;9019:2:1;9004:18;;8991:32;9046:18;9035:30;;9032:50;;;9078:1;9075;9068:12;9032:50;9101:49;9142:7;9133:6;9122:9;9118:22;9101:49;:::i;:::-;9091:59;;;8491:665;;;;;;;:::o;9554:356::-;9756:2;9738:21;;;9775:18;;;9768:30;9834:34;9829:2;9814:18;;9807:62;9901:2;9886:18;;9554:356::o;9915:380::-;9994:1;9990:12;;;;10037;;;10058:61;;10112:4;10104:6;10100:17;10090:27;;10058:61;10165:2;10157:6;10154:14;10134:18;10131:38;10128:161;;;10211:10;10206:3;10202:20;10199:1;10192:31;10246:4;10243:1;10236:15;10274:4;10271:1;10264:15;10128:161;;9915:380;;;:::o;11895:127::-;11956:10;11951:3;11947:20;11944:1;11937:31;11987:4;11984:1;11977:15;12011:4;12008:1;12001:15;12027:128;12067:3;12098:1;12094:6;12091:1;12088:13;12085:39;;;12104:18;;:::i;:::-;-1:-1:-1;12140:9:1;;12027:128::o;12160:342::-;12362:2;12344:21;;;12401:2;12381:18;;;12374:30;-1:-1:-1;;;12435:2:1;12420:18;;12413:48;12493:2;12478:18;;12160:342::o;12507:135::-;12546:3;-1:-1:-1;;12567:17:1;;12564:43;;;12587:18;;:::i;:::-;-1:-1:-1;12634:1:1;12623:13;;12507:135::o;12647:125::-;12687:4;12715:1;12712;12709:8;12706:34;;;12720:18;;:::i;:::-;-1:-1:-1;12757:9:1;;12647:125::o;12777:355::-;12979:2;12961:21;;;13018:2;12998:18;;;12991:30;13057:33;13052:2;13037:18;;13030:61;13123:2;13108:18;;12777:355::o;13479:345::-;13681:2;13663:21;;;13720:2;13700:18;;;13693:30;-1:-1:-1;;;13754:2:1;13739:18;;13732:51;13815:2;13800:18;;13479:345::o;14175:168::-;14215:7;14281:1;14277;14273:6;14269:14;14266:1;14263:21;14258:1;14251:9;14244:17;14240:45;14237:71;;;14288:18;;:::i;:::-;-1:-1:-1;14328:9:1;;14175:168::o;14348:339::-;14550:2;14532:21;;;14589:2;14569:18;;;14562:30;-1:-1:-1;;;14623:2:1;14608:18;;14601:45;14678:2;14663:18;;14348:339::o;14692:413::-;14894:2;14876:21;;;14933:2;14913:18;;;14906:30;14972:34;14967:2;14952:18;;14945:62;-1:-1:-1;;;15038:2:1;15023:18;;15016:47;15095:3;15080:19;;14692:413::o;19727:184::-;19797:6;19850:2;19838:9;19829:7;19825:23;19821:32;19818:52;;;19866:1;19863;19856:12;19818:52;-1:-1:-1;19889:16:1;;19727:184;-1:-1:-1;19727:184:1:o;21410:470::-;21589:3;21627:6;21621:13;21643:53;21689:6;21684:3;21677:4;21669:6;21665:17;21643:53;:::i;:::-;21759:13;;21718:16;;;;21781:57;21759:13;21718:16;21815:4;21803:17;;21781:57;:::i;:::-;21854:20;;21410:470;-1:-1:-1;;;;21410:470:1:o;25303:414::-;25505:2;25487:21;;;25544:2;25524:18;;;25517:30;25583:34;25578:2;25563:18;;25556:62;-1:-1:-1;;;25649:2:1;25634:18;;25627:48;25707:3;25692:19;;25303:414::o;25722:127::-;25783:10;25778:3;25774:20;25771:1;25764:31;25814:4;25811:1;25804:15;25838:4;25835:1;25828:15;25854:120;25894:1;25920;25910:35;;25925:18;;:::i;:::-;-1:-1:-1;25959:9:1;;25854:120::o;25979:112::-;26011:1;26037;26027:35;;26042:18;;:::i;:::-;-1:-1:-1;26076:9:1;;25979:112::o;26096:127::-;26157:10;26152:3;26148:20;26145:1;26138:31;26188:4;26185:1;26178:15;26212:4;26209:1;26202:15;26228:245;26295:6;26348:2;26336:9;26327:7;26323:23;26319:32;26316:52;;;26364:1;26361;26354:12;26316:52;26396:9;26390:16;26415:28;26437:5;26415:28;:::i;26889:489::-;-1:-1:-1;;;;;27158:15:1;;;27140:34;;27210:15;;27205:2;27190:18;;27183:43;27257:2;27242:18;;27235:34;;;27305:3;27300:2;27285:18;;27278:31;;;27083:4;;27326:46;;27352:19;;27344:6;27326:46;:::i;:::-;27318:54;26889:489;-1:-1:-1;;;;;;26889:489:1:o;27383:249::-;27452:6;27505:2;27493:9;27484:7;27480:23;27476:32;27473:52;;;27521:1;27518;27511:12;27473:52;27553:9;27547:16;27572:30;27596:5;27572:30;:::i;27637:127::-;27698:10;27693:3;27689:20;27686:1;27679:31;27729:4;27726:1;27719:15;27753:4;27750:1;27743:15;30771:274;30900:3;30938:6;30932:13;30954:53;31000:6;30995:3;30988:4;30980:6;30976:17;30954:53;:::i;:::-;31023:16;;;;;30771:274;-1:-1:-1;;30771:274:1:o

Swarm Source

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

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