ETH Price: $3,278.20 (+0.83%)
Gas: 1 Gwei

Token

Hodlr Keys (HODLR)
 

Overview

Max Total Supply

89 HODLR

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Eyeverse Collectibles Season1: Deployer
0xe2371bef47037BDB57960Ca21CF810eDB1535310
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:
HodlrKeysContract

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-06
*/

//*********************************************************************//
//*********************************************************************//
//
//  _   _           _ _        _   __               
// | | | |         | | |      | | / /               
// | |_| | ___   __| | |_ __  | |/ /  ___ _   _ ___ 
// |  _  |/ _ \ / _` | | '__| |    \ / _ \ | | / __|
// | | | | (_) | (_| | | |    | |\  \  __/ |_| \__ \
// \_| |_/\___/ \__,_|_|_|    \_| \_/\___|\__, |___/
//                                         __/ |    
//                                        |___/     
//
//*********************************************************************//
//*********************************************************************//
  
//-------------DEPENDENCIES--------------------------//
// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/security/Pausable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers whenNotPaused and whenPaused, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by account.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by account.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

    modifier onlyOwner() {
        _onlyOwner();
        _;
    }

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * interfaceId. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * 
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a safeTransferFrom after the balance has been updated.
        To accept the transfer, this must return
        bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)")) if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


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

pragma solidity ^0.8.0;


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


// File contracts/OperatorFilter/IOperatorFilterRegistry.sol
pragma solidity ^0.8.9;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File contracts/OperatorFilter/OperatorFilterer.sol
pragma solidity ^0.8.9;

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    function _onlyAllowedOperator(address from) private view {
      if (
          !(
              operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
              && operatorFilterRegistry.isOperatorAllowed(address(this), from)
          )
      ) {
          revert OperatorNotAllowed(msg.sender);
      }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            _onlyAllowedOperator(from);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (!operatorFilterRegistry.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}


// File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
abstract contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI , OperatorFilterer {
    using Address for address;
    
    // Mapping for token ID that are not able to traded
    // For reasons mapping to uint8 instead of boolean
    // so 1 = false and 255 = true
    mapping (uint256 => uint8) tokenTradingStatus;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

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

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

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

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - account cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

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

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

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

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override onlyAllowedOperator(from) {
        require(tokenTradingStatus[id] == 255, "Token is not tradeable!");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override onlyAllowedOperator(from) {
        for (uint256 i = 0; i < ids.length; ++i) {
            require(tokenTradingStatus[ids[i]] == 255, "Token is not tradeable!");
        }

        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

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

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

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

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

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

    /**
     * @dev Creates amount tokens of token type id, and assigns them to to.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - to cannot be the zero address.
     * - If to refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

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

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - ids and amounts must have the same length.
     * - If to refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

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

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

    /**
     * @dev Destroys amount tokens of token type id from from
     *
     * Requirements:
     *
     * - from cannot be the zero address.
     * - from must have at least amount tokens of token type id.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

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

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - ids and amounts must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

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

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

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

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

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

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

        return array;
    }
}
//-------------END DEPENDENCIES------------------------//


  
error TokenDoesNotExist();
error CannotModifyOpenEditonSupply();
error NewSupplyMustExceedPrevious();
error MintZeroQuantity();
error CapExceeded();
error InvalidPayment();
error ExceededTransactionMints();
error ExceededMints();
error CannotBeZero();
error NoStateChange();

error PublicMintClosed();
error AllowlistMintClosed();
error NotInAllowlist();

error CannotBeNullAddress();
error ClaimModeDisabled();
error IneligibleRedemptionContract();
error TokenRedemptionBalanceExhausted();
error InsufficentTokenBalance();
error InvalidApprovalForRedemption();
error CannotEnableBothRedeemModes();
error NotMaintainer();

  
// Rampp Contracts v2.1 (Teams.sol)

error InvalidTeamAddress();
error DuplicateTeamAddress();
pragma solidity ^0.8.0;

/**
* Teams is a contract implementation to extend upon Ownable that allows multiple controllers
* of a single contract to modify specific mint settings but not have overall ownership of the contract.
* This will easily allow cross-collaboration via Mintplex.xyz.
**/
abstract contract Teams is Ownable{
  mapping (address => bool) internal team;

  /**
  * @dev Adds an address to the team. Allows them to execute protected functions
  * @param _address the ETH address to add, cannot be 0x and cannot be in team already
  **/
  function addToTeam(address _address) public onlyOwner {
    if(_address == address(0)) revert InvalidTeamAddress();
    if(inTeam(_address)) revert DuplicateTeamAddress();
  
    team[_address] = true;
  }

  /**
  * @dev Removes an address to the team.
  * @param _address the ETH address to remove, cannot be 0x and must be in team
  **/
  function removeFromTeam(address _address) public onlyOwner {
    if(_address == address(0)) revert InvalidTeamAddress();
    if(!inTeam(_address)) revert InvalidTeamAddress();
  
    team[_address] = false;
  }

  /**
  * @dev Check if an address is valid and active in the team
  * @param _address ETH address to check for truthiness
  **/
  function inTeam(address _address)
    public
    view
    returns (bool)
  {
    if(_address == address(0)) revert InvalidTeamAddress();
    return team[_address] == true;
  }

  /**
  * @dev Throws if called by any account other than the owner or team member.
  */
  function _onlyTeamOrOwner() private view {
    bool _isOwner = owner() == _msgSender();
    bool _isTeam = inTeam(_msgSender());
    require(_isOwner || _isTeam, "Team: caller is not the owner or in Team.");
  }

  modifier onlyTeamOrOwner() {
    _onlyTeamOrOwner();
    _;
  }
}


  
  // File: OpenEditionSupport.sol
  abstract contract OpenEditionSupport is Teams {
    mapping (uint256 => bool) private openEditionEnabled;

    /**
    * @dev Check if a token ID is in open edition mode. meaning that the current minted count == total supply
    * @param _tokenId the token ID to check against
    */
    function isOpenEdition(uint256 _tokenId) public view returns (bool) {
      return openEditionEnabled[_tokenId] == true;
    }

    /**
    * @dev Update if a token is in Open Edition mode or not.
    * @param _tokenId the token ID to check against
    * @param _isOpenEdition true|false for new setting for token.
    */
    function setOpenEditionMode(uint256 _tokenId, bool _isOpenEdition) public onlyTeamOrOwner {
      openEditionEnabled[_tokenId] = _isOpenEdition;
    }
  }
  

  
  // File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol
  // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)
  
  pragma solidity ^0.8.0;
  
  
  /**
   * @dev Extension of ERC1155 that adds tracking of total supply per id.
   *
   * Useful for scenarios where Fungible and Non-fungible tokens have to be
   * clearly identified. Note: While a totalSupply of 1 might mean the
   * corresponding is an NFT, there is no guarantees that no other token with the
   * same id are not going to be minted.
   */
  abstract contract ERC1155Supply is ERC1155, Teams, OpenEditionSupport {
      mapping (uint256 => uint256) private _totalSupply;
      mapping (uint256 => uint256) private tokenSupplyCap;
  
      /**
       * @dev Total amount of tokens in with a given id.
       */
      function totalSupply(uint256 _id) public view virtual returns (uint256) {
          return _totalSupply[_id];
      }

      /**
      * @dev Helper function to check if tokenId and qty is within supply cap for token. 
      * If OpenEdition enabled - short circuit to true since cap == minted amt
      * @param _id the token ID to check against
      * @param _qtyToMint the amount of tokens to be minted
      */
      function withinSupplyCap(uint256 _id, uint256 _qtyToMint) internal view returns(bool) {
        return isOpenEdition(_id) ? true : ((totalSupply(_id) + _qtyToMint) <= getTokenSupplyCap(_id));
      }
  
      function getTokenSupplyCap(uint256 _id) public view virtual returns (uint256) {
          if(!exists(_id)) revert TokenDoesNotExist();
          return isOpenEdition(_id) ? _totalSupply[_id] : tokenSupplyCap[_id];
      }
  
      function setTokenSupplyCap(uint256 _id, uint256 _newSupplyCap) public onlyTeamOrOwner {
          if(!exists(_id)) revert TokenDoesNotExist();
          if(isOpenEdition(_id)) revert CannotModifyOpenEditonSupply();  
          if(_newSupplyCap <= tokenSupplyCap[_id]) revert NewSupplyMustExceedPrevious(); 
          tokenSupplyCap[_id] = _newSupplyCap;
      }
  
      /**
       * @dev Indicates whether any token exist with a given id, or not.
       */
      function exists(uint256 id) public view virtual returns (bool) {
          return ERC1155Supply.totalSupply(id) > 0;
      }
  
      /**
       * @dev See {ERC1155-_beforeTokenTransfer}.
       */
      function _beforeTokenTransfer(
          address operator,
          address from,
          address to,
          uint256[] memory ids,
          uint256[] memory amounts,
          bytes memory data
      ) internal virtual override {
          super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
  
          if (from == address(0)) {
              for (uint256 i = 0; i < ids.length; ++i) {
                  _totalSupply[ids[i]] += amounts[i];
              }
          }
  
          if (to == address(0)) {
              for (uint256 i = 0; i < ids.length; ++i) {
                  _totalSupply[ids[i]] -= amounts[i];
              }
          }
      }
  }
  

  
  // File: MerkleProof.sol - OpenZeppelin Standard
  
  pragma solidity ^0.8.0;
  
  /**
  * @dev These functions deal with verification of Merkle Trees proofs.
  *
  * The proofs can be generated using the JavaScript library
  * https://github.com/miguelmota/merkletreejs[merkletreejs].
  * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
  *
  *
  * WARNING: You should avoid using leaf values that are 64 bytes long prior to
  * hashing, or use a hash function other than keccak256 for hashing leaves.
  * This is because the concatenation of a sorted pair of internal nodes in
  * the merkle tree could be reinterpreted as a leaf value.
  */
  library MerkleProof {
      /**
      * @dev Returns true if a 'leaf' can be proved to be a part of a Merkle tree
      * defined by 'root'. For this, a 'proof' must be provided, containing
      * sibling hashes on the branch from the leaf to the root of the tree. Each
      * pair of leaves and each pair of pre-images are assumed to be sorted.
      */
      function verify(
          bytes32[] memory proof,
          bytes32 root,
          bytes32 leaf
      ) internal pure returns (bool) {
          return processProof(proof, leaf) == root;
      }
  
      /**
      * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
      * from 'leaf' using 'proof'. A 'proof' is valid if and only if the rebuilt
      * hash matches the root of the tree. When processing the proof, the pairs
      * of leafs & pre-images are assumed to be sorted.
      *
      * _Available since v4.4._
      */
      function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
          bytes32 computedHash = leaf;
          for (uint256 i = 0; i < proof.length; i++) {
              bytes32 proofElement = proof[i];
              if (computedHash <= proofElement) {
                  // Hash(current computed hash + current element of the proof)
                  computedHash = _efficientHash(computedHash, proofElement);
              } else {
                  // Hash(current element of the proof + current computed hash)
                  computedHash = _efficientHash(proofElement, computedHash);
              }
          }
          return computedHash;
      }
  
      function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
          assembly {
              mstore(0x00, a)
              mstore(0x20, b)
              value := keccak256(0x00, 0x40)
          }
      }
  }
  
  // File: Allowlist.sol
  pragma solidity ^0.8.0;
  
  abstract contract Allowlist is Teams {
      mapping(uint256 => bytes32) private merkleRoot;
      mapping(uint256 => bool) private allowlistMode;
      bool public onlyAllowlistMode = false;

      /**
      * @dev Get merkle root for specific token in collection
      * @param _id token id from collection
      */
      function merkleRootForToken(uint256 _id) public view returns(bytes32) {
          return merkleRoot[_id];
      }

      /**
      * @dev Update merkle root to reflect changes in Allowlist
      * @param _id token if for merkle root
      * @param _newMerkleRoot new merkle root to reflect most recent Allowlist
      */
      function updateMerkleRoot(uint256 _id, bytes32 _newMerkleRoot) public onlyTeamOrOwner {
          require(_newMerkleRoot != merkleRoot[_id], "Merkle root will be unchanged!");
          merkleRoot[_id] = _newMerkleRoot;
      }

      /**
      * @dev Check the proof of an address if valid for merkle root
      * @param _address address to check for proof
      * @param _tokenId token id to check root of
      * @param _merkleProof Proof of the address to validate against root and leaf
      */
      function isAllowlisted(address _address, uint256 _tokenId, bytes32[] calldata _merkleProof) public view returns(bool) {
          require(merkleRootForToken(_tokenId) != 0, "Merkle root is not set!");
          bytes32 leaf = keccak256(abi.encodePacked(_address));

          return MerkleProof.verify(_merkleProof, merkleRoot[_tokenId], leaf);
      }

      function inAllowlistMode(uint256 _id) public view returns (bool) {
          return allowlistMode[_id] == true;
      }

      function enableAllowlistOnlyMode(uint256 _id) public onlyTeamOrOwner {
          allowlistMode[_id] = true;
      }

      function disableAllowlistOnlyMode(uint256 _id) public onlyTeamOrOwner {
          allowlistMode[_id] = false;
      }
  }
  
  
interface IERC20 {
  function allowance(address owner, address spender) external view returns (uint256);
  function transfer(address _to, uint256 _amount) external returns (bool);
  function balanceOf(address account) external view returns (uint256);
  function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

abstract contract Withdrawable is Teams {
  address[] public payableAddresses = [0x2024aBe345FC322aA76B68323Fa911C22473e324];
  uint256[] public payableFees = [100];
  uint256 public payableAddressCount = 1;

  function withdrawAll() public onlyTeamOrOwner {
      require(address(this).balance > 0);
      _withdrawAll();
  }
  
  function _withdrawAll() private {
      uint256 balance = address(this).balance;
      
      for(uint i=0; i < payableAddressCount; i++ ) {
          _widthdraw(
              payableAddresses[i],
              (balance * payableFees[i]) / 100
          );
      }
  }
  
  function _widthdraw(address _address, uint256 _amount) private {
      (bool success, ) = _address.call{value: _amount}("");
      require(success, "Transfer failed.");
  }

  /**
    * @dev Allow contract owner to withdraw ERC-20 balance from contract
    * while still splitting royalty payments to all other team members.
    * in the event ERC-20 tokens are paid to the contract.
    * @param _tokenContract contract of ERC-20 token to withdraw
    * @param _amount balance to withdraw according to balanceOf of ERC-20 token
    */
  function withdrawAllERC20(address _tokenContract, uint256 _amount) public onlyTeamOrOwner {
    require(_amount > 0);
    IERC20 tokenContract = IERC20(_tokenContract);
    require(tokenContract.balanceOf(address(this)) >= _amount, 'Contract does not own enough tokens');

    for(uint i=0; i < payableAddressCount; i++ ) {
        tokenContract.transfer(payableAddresses[i], (_amount * payableFees[i]) / 100);
    }
  }
}


  
// File: isFeeable.sol
abstract contract isPriceable is Teams {
    mapping (uint256 => uint256) tokenPrice;
    uint256 public PROVIDER_FEE = 0.000777 ether;  
    address private constant PROVIDER = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1;

    function getPriceForToken(uint256 _id) public view returns(uint256) {
        return tokenPrice[_id];
    }

    function setPriceForToken(uint256 _id, uint256 _feeInWei) public onlyTeamOrOwner {
        tokenPrice[_id] = _feeInWei;
    }

    function sendProviderFee() internal {
      payable(PROVIDER).transfer(PROVIDER_FEE);
    }

    function setProviderFee(uint256 _fee) public {
        if(_msgSender() != PROVIDER) revert NotMaintainer();
        PROVIDER_FEE = _fee;
    }
}


  
// File: hasTransactionCap.sol
abstract contract hasTransactionCap is Teams {
    mapping (uint256 => uint256) transactionCap;

    function getTransactionCapForToken(uint256 _id) public view returns(uint256) {
        return transactionCap[_id];
    }

    function setTransactionCapForToken(uint256 _id, uint256 _transactionCap) public onlyTeamOrOwner {
        if(_transactionCap == 0) revert CannotBeZero();
        transactionCap[_id] = _transactionCap;
    }

    function canMintQtyForTransaction(uint256 _id, uint256 _qty) internal view returns(bool) {
        return _qty <= transactionCap[_id];
    }
}


  
// File: hasWalletCap.sol
abstract contract hasWalletCap is Teams {
    mapping (uint256 => bool) private walletCapEnabled;
    mapping (uint256 => uint256) private walletMaxes;
    mapping (address => mapping(uint256 => uint256)) private walletMints;

    /**
    * @dev establish the inital settings of the wallet cap upon creation
    * @param _id token id
    * @param _initWalletCapStatus initial state of wallet cap
    * @param _initWalletMax initial state of wallet cap limit
    */
    function setWalletCap(uint256 _id, bool _initWalletCapStatus, uint256 _initWalletMax) internal {
      walletCapEnabled[_id] = _initWalletCapStatus;
      walletMaxes[_id] = _initWalletMax;
    }

    function enableWalletCap(uint256 _id) public onlyTeamOrOwner {
      walletCapEnabled[_id] = true;
    }

    function disableWalletCap(uint256 _id) public onlyTeamOrOwner {
      walletCapEnabled[_id] = false;
    }

    function addTokenMints(uint256 _id, address _address, uint256 _amount) internal {
      walletMints[_address][_id] = (walletMints[_address][_id] +  _amount);
    }

    /**
    * @dev Allow contract owner to reset the amount of tokens claimed to be minted per address
    * @param _id token id
    * @param _address address to reset counter of
    */
    function resetMints(uint256 _id, address _address) public onlyTeamOrOwner {
      walletMints[_address][_id] = 0;
    }

    /**
    * @dev update the wallet max per wallet per token
    * @param _id token id
    * @param _newMax the new wallet max per wallet
    */
    function setTokenWalletMax(uint256 _id, uint256 _newMax) public onlyTeamOrOwner {
      if(_newMax == 0) revert CannotBeZero();
      walletMaxes[_id] = _newMax;
    }

    /**
    * @dev Check if wallet over maximum mint
    * @param _id token id to query against
    * @param _address address in question to check if minted count exceeds max
    */
    function canMintAmount(uint256 _id, address _address, uint256 _amount) public view returns(bool) {
        if(isWalletCapEnabled(_id) == false) {
          return true;
        }
  
        if(_amount == 0) revert CannotBeZero();
        return (currentMintCount(_id, _address) + _amount) <= tokenWalletCap(_id);
    }

    /**
    * @dev Get current wallet cap for token
    * @param _id token id to query against
    */
    function tokenWalletCap(uint256 _id) public view returns(uint256) {
      return walletMaxes[_id];
    }

    /**
    * @dev Check if token is enforcing wallet caps
    * @param _id token id to query against
    */
    function isWalletCapEnabled(uint256 _id) public view returns(bool) {
      return walletCapEnabled[_id] == true;
    }

    /**
    * @dev Check current mint count for token and address
    * @param _id token id to query against
    * @param _address address to check mint count of
    */
    function currentMintCount(uint256 _id, address _address) public view returns(uint256) {
      return walletMints[_address][_id];
    }
}


  
// File: Closeable.sol
abstract contract Closeable is Teams {
    mapping (uint256 => bool) mintingOpen;

    function openMinting(uint256 _id) public onlyTeamOrOwner {
        mintingOpen[_id] = true;
    }

    function closeMinting(uint256 _id) public onlyTeamOrOwner {
        mintingOpen[_id] = false;
    }

    function isMintingOpen(uint256 _id) public view returns(bool) {
        return mintingOpen[_id] == true;
    }

    function setInitialMintingStatus(uint256 _id, bool _initStatus) internal {
        mintingOpen[_id] = _initStatus;
    }
}
  

  
  
// File: contracts/HodlrKeysContract.sol
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.2;

contract HodlrKeysContract is 
    ERC1155,
    Ownable,
    Teams,
    Pausable, 
    ERC1155Supply, 
    
    Withdrawable,
    Closeable,
    isPriceable,
    hasTransactionCap,
    hasWalletCap,
    Allowlist
{
    constructor() ERC1155('') OperatorFilterer(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6, true) {}

    uint8 constant public CONTRACT_VERSION = 4;
    bytes private emptyBytes;
    uint256 public currentTokenID = 0;
    string public name = "Hodlr Keys";
    string public symbol = "HODLR";

    mapping (uint256 => string) baseTokenURI;

    /**
    * @dev returns the URI for a specific token to show metadata on marketplaces
    * @param _id the maximum supply of tokens for this token
    */
    function uri(uint256 _id) public override view returns (string memory) {
        if(!exists(_id)) revert TokenDoesNotExist();
        return baseTokenURI[_id];
    }

    
  /////////////// Admin Mint Functions
  function mintToAdmin(address _address, uint256 _id, uint256 _qty) public onlyTeamOrOwner {
      if(!exists(_id)) revert TokenDoesNotExist();
      if(_qty == 0) revert MintZeroQuantity();
      if(!withinSupplyCap(_id, _qty)) revert CapExceeded();
      
      _mint(_address, _id, _qty, emptyBytes);
  }

  function mintManyAdmin(address[] memory addresses, uint256 _id, uint256 _qtyToEach) public onlyTeamOrOwner {
      for(uint256 i=0; i < addresses.length; i++) {
          _mint(addresses[i], _id, _qtyToEach, emptyBytes);
      }
  }

    
  /////////////// Public Mint Functions
  /**
  * @dev Mints a number of tokens to a single address.
  * fee may or may not be required*
  * @param _to recipient address
  * @param _id token id of collection
  * @param _qty amount to mint
  */
  function mintToMultiple(address _to, uint256 _id, uint256 _qty) public payable whenNotPaused {
      if(!exists(_id)) revert TokenDoesNotExist();
      if(_qty == 0) revert MintZeroQuantity();
      if(!canMintQtyForTransaction(_id, _qty)) revert ExceededTransactionMints();
      if(!withinSupplyCap(_id, _qty)) revert CapExceeded();
      if(msg.value != getPrice(_id, _qty)) revert InvalidPayment();

      if(inAllowlistMode(_id)) revert PublicMintClosed();
      if(!isMintingOpen(_id)) revert PublicMintClosed();
      if(!canMintAmount(_id, _to, _qty)) revert ExceededMints();

      sendProviderFee();
      addTokenMints(_id, _to, _qty);
      _mint(_to, _id, _qty, emptyBytes);
  }

    
    ///////////// ALLOWLIST MINTING FUNCTIONS
    /**
    * @dev Mints a number of tokens to a single address.
    * fee may or may not be required*
    * @param _to recipient address
    * @param _id token id of collection
    * @param _qty amount to mint
    * @param _merkleProof merkle proof tree for sender
    */
    function mintToMultipleAL(address _to, uint256 _id, uint256 _qty, bytes32[] calldata _merkleProof) public payable whenNotPaused {
        if(!exists(_id)) revert TokenDoesNotExist();
        if(_qty == 0) revert MintZeroQuantity();
        if(!canMintQtyForTransaction(_id, _qty)) revert ExceededTransactionMints();
        if(!withinSupplyCap(_id, _qty)) revert CapExceeded();
        if(msg.value != getPrice(_id, _qty)) revert InvalidPayment();

        if(!inAllowlistMode(_id) || !isMintingOpen(_id)) revert AllowlistMintClosed();
        if(!isAllowlisted(_to, _id, _merkleProof)) revert NotInAllowlist();
        if(!canMintAmount(_id, _to, _qty)) revert ExceededMints();

        sendProviderFee();
        addTokenMints(_id, _to, _qty);
        _mint(_to, _id, _qty, emptyBytes);
    }


    

    /**
    * @dev Creates a new primary token for contract and gives creator first token
    * @param _tokenSupplyCap the maximum supply of tokens for this token
    * @param _tokenTransactionCap maximum amount of tokens one can buy per tx
    * @param _tokenFeeInWei payable fee per token
    * @param _isOpenDefaultStatus can token be publically minted once created
    * @param _allowTradingDefaultStatus is the token intially able to be transferred
    * @param _enableWalletCap is the token going to enforce wallet caps on creation
    * @param _walletCap wallet cap limit inital setting
    * @param _tokenURI the token URI to the metadata for this token
    */
    function createToken(
            uint256 _tokenSupplyCap, 
            uint256 _tokenTransactionCap,
            uint256 _tokenFeeInWei, 
            bool _isOpenDefaultStatus,
            bool _allowTradingDefaultStatus,
            bool _enableWalletCap,
            uint256 _walletCap,
            bool _isOpenEdition,
            string memory _tokenURI
        ) public onlyTeamOrOwner {
        if(_tokenSupplyCap == 0) revert CannotBeZero();
        if(_tokenTransactionCap == 0) revert CannotBeZero();
        if(bytes(_tokenURI).length == 0) revert CannotBeZero();

        uint256 tokenId = _getNextTokenID();

        _mint(msg.sender, tokenId, 1, emptyBytes);
        baseTokenURI[tokenId] = _tokenURI;

        setTokenSupplyCap(tokenId, _tokenSupplyCap);
        setPriceForToken(tokenId, _tokenFeeInWei);
        setTransactionCapForToken(tokenId, _tokenTransactionCap);
        setInitialMintingStatus(tokenId, _isOpenDefaultStatus);
        setWalletCap(tokenId, _enableWalletCap, _walletCap);
        tokenTradingStatus[tokenId] = _allowTradingDefaultStatus ? 255 : 1;
        setOpenEditionMode(tokenId, _isOpenEdition);

        _incrementTokenTypeId();
    }

    /**
    * @dev pauses minting for all tokens in the contract
    */
    function pause() public onlyTeamOrOwner {
        _pause();
    }

    /**
    * @dev unpauses minting for all tokens in the contract
    */
    function unpause() public onlyTeamOrOwner {
        _unpause();
    }

    /**
    * @dev set the URI for a specific token on the contract
    * @param _id token id
    * @param _newTokenURI string for new metadata url (ex: ipfs://something)
    */
    function setTokenURI(uint256 _id, string memory _newTokenURI) public onlyTeamOrOwner {
        if(!exists(_id)) revert TokenDoesNotExist();
        baseTokenURI[_id] = _newTokenURI;
    }

    /**
    * @dev calculates price for a token based on qty
    * @param _id token id
    * @param _qty desired amount to mint
    */
    function getPrice(uint256 _id, uint256 _qty) public view returns (uint256) {
        if(_qty == 0) revert CannotBeZero();
        return (getPriceForToken(_id) * _qty) + PROVIDER_FEE;
    }

    /**
    * @dev prevent token from being transferred (aka soulbound)
    * @param tokenId token id
    */
    function setTokenUntradeable(uint256 tokenId) public onlyTeamOrOwner {
        if(!exists(tokenId)) revert TokenDoesNotExist();
        if(tokenTradingStatus[tokenId] == 1) revert NoStateChange();
        tokenTradingStatus[tokenId] = 1;
    }

    /**
    * @dev allow token from being transferred - the default mode
    * @param tokenId token id
    */
    function setTokenTradeable(uint256 tokenId) public onlyTeamOrOwner {
        if(!exists(tokenId)) revert TokenDoesNotExist();
        if(tokenTradingStatus[tokenId] == 255) revert NoStateChange();
        tokenTradingStatus[tokenId] = 255;
    }

    /**
    * @dev check if token id is tradeable
    * @param tokenId token id
    */
    function isTokenTradeable(uint256 tokenId) public view returns (bool) {
        if(!exists(tokenId)) revert TokenDoesNotExist();
        return tokenTradingStatus[tokenId] == 255;
    }

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

    function _getNextTokenID() private view returns (uint256) {
        return currentTokenID + 1;
    }

    /**
    * @dev increments the value of currentTokenID
    */
    function _incrementTokenTypeId() private  {
        currentTokenID++;
    }

    
  function contractURI() public pure returns (string memory) {
    return "https://metadata.mintplex.xyz/wi5F09l1WtZ9n0A0IlWM/contract-metadata";
  }
  
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllowlistMintClosed","type":"error"},{"inputs":[],"name":"CannotBeZero","type":"error"},{"inputs":[],"name":"CannotModifyOpenEditonSupply","type":"error"},{"inputs":[],"name":"CapExceeded","type":"error"},{"inputs":[],"name":"DuplicateTeamAddress","type":"error"},{"inputs":[],"name":"ExceededMints","type":"error"},{"inputs":[],"name":"ExceededTransactionMints","type":"error"},{"inputs":[],"name":"InvalidPayment","type":"error"},{"inputs":[],"name":"InvalidTeamAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NewSupplyMustExceedPrevious","type":"error"},{"inputs":[],"name":"NoStateChange","type":"error"},{"inputs":[],"name":"NotInAllowlist","type":"error"},{"inputs":[],"name":"NotMaintainer","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"PublicMintClosed","type":"error"},{"inputs":[],"name":"TokenDoesNotExist","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"CONTRACT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVIDER_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"closeMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenSupplyCap","type":"uint256"},{"internalType":"uint256","name":"_tokenTransactionCap","type":"uint256"},{"internalType":"uint256","name":"_tokenFeeInWei","type":"uint256"},{"internalType":"bool","name":"_isOpenDefaultStatus","type":"bool"},{"internalType":"bool","name":"_allowTradingDefaultStatus","type":"bool"},{"internalType":"bool","name":"_enableWalletCap","type":"bool"},{"internalType":"uint256","name":"_walletCap","type":"uint256"},{"internalType":"bool","name":"_isOpenEdition","type":"bool"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"createToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"currentMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"disableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"disableWalletCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"enableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"enableWalletCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getPriceForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getTokenSupplyCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getTransactionCapForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"inAllowlistMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"inTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"isMintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isOpenEdition","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isTokenTradeable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"isWalletCapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"merkleRootForToken","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_qtyToEach","type":"uint256"}],"name":"mintManyAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintToAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintToMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_qty","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToMultipleAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyAllowlistMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"openMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"resetMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_isOpenEdition","type":"bool"}],"name":"setOpenEditionMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPriceForToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setProviderFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_newSupplyCap","type":"uint256"}],"name":"setTokenSupplyCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"setTokenTradeable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_newTokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"setTokenUntradeable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setTokenWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_transactionCap","type":"uint256"}],"name":"setTransactionCapForToken","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":"_id","type":"uint256"}],"name":"tokenWalletCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAllERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052732024abe345fc322aa76b68323fa911c22473e32460809081526200002e90600a906001620002df565b506040805160208101909152606481526200004e90600b90600162000349565b506001600c556602c2ad68fd9000600f556016805460ff19169055600060185560408051808201909152600a80825269486f646c72204b65797360b01b6020909201918252620000a1916019916200038c565b50604080518082019091526005808252642427a2262960d91b6020909201918252620000d091601a916200038c565b50348015620000de57600080fd5b50604080516020810190915260008152733cc6cdda760b79bafa08df41ecfa224f810dceb660016daaeb6d7670e522a718067333cd4e3b156200024a5780156200019857604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017957600080fd5b505af11580156200018e573d6000803e3d6000fd5b505050506200024a565b6001600160a01b03821615620001e95760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200015e565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200023057600080fd5b505af115801562000245573d6000803e3d6000fd5b505050505b506200025890508162000274565b5062000264336200028d565b6006805460ff191690556200045d565b8051620002899060039060208401906200038c565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000337579160200282015b828111156200033757825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000300565b506200034592915062000409565b5090565b82805482825590600052602060002090810192821562000337579160200282015b8281111562000337578251829060ff169055916020019190600101906200036a565b8280546200039a9062000420565b90600052602060002090601f016020900481019282620003be576000855562000337565b82601f10620003d957805160ff191683800117855562000337565b8280016001018555821562000337579182015b8281111562000337578251825591602001919060010190620003ec565b5b808211156200034557600081556001016200040a565b600181811c908216806200043557607f821691505b602082108114156200045757634e487b7160e01b600052602260045260246000fd5b50919050565b6141f6806200046d6000396000f3fe6080604052600436106103e35760003560e01c8063853828b611610208578063bec0904b11610118578063eb238e81116100ab578063f2fde38b1161007a578063f2fde38b14610c68578063f623bb8b14610c88578063f7436e3714610c9e578063fc2f383214610cbe578063fe6d3cc814610cde57600080fd5b8063eb238e8114610bd3578063eec8e90814610c08578063f1e3311514610c28578063f242432a14610c4857600080fd5b8063e6c6990a116100e7578063e6c6990a14610b3b578063e82da69114610b55578063e8a3d48514610b75578063e985e9c514610b8a57600080fd5b8063bec0904b14610aa6578063d2de022f14610adb578063d8800f9414610afb578063dfdedf6914610b1b57600080fd5b8063a1af10ca1161019b578063b40ebceb1161016a578063b40ebceb14610a10578063bb6074e014610a30578063bb62115e14610a43578063bc1f0ab514610a59578063bd85b03914610a7957600080fd5b8063a1af10ca14610990578063a22cb465146109b0578063a7593fb7146109d0578063ac80746a146109f057600080fd5b80638da5cb5b116101d75780638da5cb5b1461091057806395d89b411461092e5780639b192647146109435780639e490e241461096357600080fd5b8063853828b614610876578063869e9a001461088b578063891bbe73146108ab5780638c04b8e9146108e357600080fd5b80634790c92511610303578063628d35c911610296578063715018a611610265578063715018a6146107c2578063736e04fa146107d75780637aa9c33f1461080c57806383e083c31461082c5780638456cb591461086157600080fd5b8063628d35c91461074f5780636586375b1461076f5780636af3ef581461078f5780636c6acd4d146107a257600080fd5b80634e5298a0116102d25780634e5298a0146106a85780634f558e79146106e85780635c975abb146107175780635cf4ee911461072f57600080fd5b80634790c925146106015780634bf4e087146106215780634d09ae6d1461064e5780634e1273f41461067b57600080fd5b80632eb2c2d61161037b5780633e07311c1161034a5780633e07311c146105965780633e511168146105ac5780633f4ba83a146105cc57806343696f18146105e157600080fd5b80632eb2c2d61461050f5780633832e8701461052f57806338b903331461054f57806338df41ac1461057657600080fd5b8063134902fd116103b7578063134902fd1461048d578063143727c9146104ad578063162094c4146104cd578063286c8137146104ef57600080fd5b8062fdd58e146103e857806301ffc9a71461041b57806306fdde031461044b5780630e89341c1461046d575b600080fd5b3480156103f457600080fd5b506104086104033660046134fd565b610cfe565b6040519081526020015b60405180910390f35b34801561042757600080fd5b5061043b61043636600461353d565b610d97565b6040519015158152602001610412565b34801561045757600080fd5b50610460610de9565b60405161041291906135a7565b34801561047957600080fd5b506104606104883660046135ba565b610e77565b34801561049957600080fd5b5061043b6104a83660046135ba565b610f44565b3480156104b957600080fd5b506104086104c83660046135ba565b610f89565b3480156104d957600080fd5b506104ed6104e8366004613688565b610ffe565b005b3480156104fb57600080fd5b5061040861050a3660046135ba565b611056565b34801561051b57600080fd5b506104ed61052a366004613762565b611077565b34801561053b57600080fd5b506104ed61054a36600461380b565b61121c565b34801561055b57600080fd5b50610564600481565b60405160ff9091168152602001610412565b34801561058257600080fd5b506104ed61059136600461382d565b6112cc565b3480156105a257600080fd5b50610408600c5481565b3480156105b857600080fd5b506104ed6105c736600461380b565b6113db565b3480156105d857600080fd5b506104ed611413565b3480156105ed57600080fd5b506104ed6105fc366004613860565b611425565b34801561060d57600080fd5b506104ed61061c3660046135ba565b61149e565b34801561062d57600080fd5b5061040861063c3660046135ba565b60009081526012602052604090205490565b34801561065a57600080fd5b506104086106693660046135ba565b6000908152600e602052604090205490565b34801561068757600080fd5b5061069b6106963660046138e8565b611520565b604051610412919061397c565b3480156106b457600080fd5b506104086106c336600461398f565b6001600160a01b03166000908152601360209081526040808320938352929052205490565b3480156106f457600080fd5b5061043b6107033660046135ba565b600090815260086020526040902054151590565b34801561072357600080fd5b5060065460ff1661043b565b34801561073b57600080fd5b5061040861074a36600461380b565b611649565b34801561075b57600080fd5b506104ed61076a3660046135ba565b611697565b34801561077b57600080fd5b506104ed61078a3660046135ba565b6116b7565b6104ed61079d36600461382d565b6116d7565b3480156107ae57600080fd5b506104ed6107bd3660046139bb565b611875565b3480156107ce57600080fd5b506104ed6118cd565b3480156107e357600080fd5b5061043b6107f23660046135ba565b60009081526011602052604090205460ff16151560011490565b34801561081857600080fd5b506104ed61082736600461380b565b6118df565b34801561083857600080fd5b5061043b6108473660046135ba565b6000908152600d602052604090205460ff16151560011490565b34801561086d57600080fd5b506104ed6118f9565b34801561088257600080fd5b506104ed611909565b34801561089757600080fd5b506104ed6108a6366004613a16565b611926565b3480156108b757600080fd5b506108cb6108c63660046135ba565b61194e565b6040516001600160a01b039091168152602001610412565b3480156108ef57600080fd5b506104086108fe3660046135ba565b60009081526014602052604090205490565b34801561091c57600080fd5b506004546001600160a01b03166108cb565b34801561093a57600080fd5b50610460611978565b34801561094f57600080fd5b506104ed61095e3660046135ba565b611985565b34801561096f57600080fd5b5061040861097e3660046135ba565b60009081526010602052604090205490565b34801561099c57600080fd5b5061043b6109ab366004613860565b6119a8565b3480156109bc57600080fd5b506104ed6109cb366004613a46565b6119f4565b3480156109dc57600080fd5b506104ed6109eb3660046135ba565b611a09565b3480156109fc57600080fd5b506104ed610a0b36600461398f565b611a42565b348015610a1c57600080fd5b506104ed610a2b3660046134fd565b611a70565b6104ed610a3e366004613abd565b611c6d565b348015610a4f57600080fd5b5061040860185481565b348015610a6557600080fd5b506104ed610a743660046135ba565b611e3a565b348015610a8557600080fd5b50610408610a943660046135ba565b60009081526008602052604090205490565b348015610ab257600080fd5b5061043b610ac13660046135ba565b60009081526007602052604090205460ff16151560011490565b348015610ae757600080fd5b5061043b610af6366004613b24565b611e5d565b348015610b0757600080fd5b506104ed610b1636600461380b565b611f47565b348015610b2757600080fd5b506104ed610b36366004613860565b611f7f565b348015610b4757600080fd5b5060165461043b9060ff1681565b348015610b6157600080fd5b506104ed610b703660046135ba565b611ff3565b348015610b8157600080fd5b50610460612013565b348015610b9657600080fd5b5061043b610ba5366004613b7d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b348015610bdf57600080fd5b5061043b610bee3660046135ba565b60009081526015602052604090205460ff16151560011490565b348015610c1457600080fd5b506104ed610c233660046135ba565b612033565b348015610c3457600080fd5b506104ed610c4336600461380b565b6120b5565b348015610c5457600080fd5b506104ed610c63366004613ba7565b61212d565b348015610c7457600080fd5b506104ed610c83366004613860565b612249565b348015610c9457600080fd5b50610408600f5481565b348015610caa57600080fd5b506104ed610cb9366004613c0b565b6122c2565b348015610cca57600080fd5b5061043b610cd9366004613cb9565b612411565b348015610cea57600080fd5b506104ed610cf93660046135ba565b612496565b60006001600160a01b038316610d6f5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b1480610dc857506001600160e01b031982166303a24d0760e21b145b80610de357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60198054610df690613cee565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2290613cee565b8015610e6f5780601f10610e4457610100808354040283529160200191610e6f565b820191906000526020600020905b815481529060010190602001808311610e5257829003601f168201915b505050505081565b600081815260086020526040902054606090610ea65760405163677510db60e11b815260040160405180910390fd5b6000828152601b602052604090208054610ebf90613cee565b80601f0160208091040260200160405190810160405280929190818152602001828054610eeb90613cee565b8015610f385780601f10610f0d57610100808354040283529160200191610f38565b820191906000526020600020905b815481529060010190602001808311610f1b57829003601f168201915b50505050509050919050565b600081815260086020526040812054610f705760405163677510db60e11b815260040160405180910390fd5b5060009081526020819052604090205460ff9081161490565b600081815260086020526040812054610fb55760405163677510db60e11b815260040160405180910390fd5b610fd38260009081526007602052604090205460ff16151560011490565b610feb57600082815260096020526040902054610de3565b5060009081526008602052604090205490565b6110066124b9565b6000828152600860205260409020546110325760405163677510db60e11b815260040160405180910390fd5b6000828152601b60209081526040909120825161105192840190613448565b505050565b600b818154811061106657600080fd5b600091825260209091200154905081565b846daaeb6d7670e522a718067333cd4e3b15611160576001600160a01b0381163314156111575760005b845181101561110c576000808683815181106110bf576110bf613d29565b60209081029190910181015182528101919091526040016000205460ff908116146110fc5760405162461bcd60e51b8152600401610d6690613d3f565b61110581613d8c565b90506110a1565b506001600160a01b03861633148061112957506111298633610ba5565b6111455760405162461bcd60e51b8152600401610d6690613da7565b6111528686868686612543565b611214565b61116081612729565b60005b84518110156111ce5760008086838151811061118157611181613d29565b60209081029190910181015182528101919091526040016000205460ff908116146111be5760405162461bcd60e51b8152600401610d6690613d3f565b6111c781613d8c565b9050611163565b506001600160a01b0386163314806111eb57506111eb8633610ba5565b6112075760405162461bcd60e51b8152600401610d6690613da7565b6112148686868686612543565b505050505050565b6112246124b9565b6000828152600860205260409020546112505760405163677510db60e11b815260040160405180910390fd5b61126e8260009081526007602052604090205460ff16151560011490565b1561128c5760405163222f7ae360e21b815260040160405180910390fd5b60008281526009602052604090205481116112ba576040516325ede60b60e11b815260040160405180910390fd5b60009182526009602052604090912055565b6112d46124b9565b6000828152600860205260409020546113005760405163677510db60e11b815260040160405180910390fd5b8061131e5760405163b562e8dd60e01b815260040160405180910390fd5b611328828261285c565b6113455760405163a4875a4960e01b815260040160405180910390fd5b6110518383836017805461135890613cee565b80601f016020809104026020016040519081016040528092919081815260200182805461138490613cee565b80156113d15780601f106113a6576101008083540402835291602001916113d1565b820191906000526020600020905b8154815290600101906020018083116113b457829003601f168201915b50505050506128aa565b6113e36124b9565b8061140157604051631e1d0ab560e01b815260040160405180910390fd5b60009182526010602052604090912055565b61141b6124b9565b6114236129bc565b565b61142d612a4f565b6001600160a01b0381166114535760405162afb37360e31b815260040160405180910390fd5b61145c816119a8565b1561147a57604051631002377360e01b815260040160405180910390fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6114a66124b9565b6000818152600860205260409020546114d25760405163677510db60e11b815260040160405180910390fd5b60008181526020819052604090205460ff90811614156115055760405163a28a88c160e01b815260040160405180910390fd5b6000908152602081905260409020805460ff191660ff179055565b606081518351146115855760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610d66565b600083516001600160401b038111156115a0576115a06135d3565b6040519080825280602002602001820160405280156115c9578160200160208202803683370190505b50905060005b8451811015611641576116148582815181106115ed576115ed613d29565b602002602001015185838151811061160757611607613d29565b6020026020010151610cfe565b82828151811061162657611626613d29565b602090810291909101015261163a81613d8c565b90506115cf565b509392505050565b60008161166957604051631e1d0ab560e01b815260040160405180910390fd5b600f546000848152600e6020526040902054611686908490613df9565b6116909190613e18565b9392505050565b61169f6124b9565b6000908152600d60205260409020805460ff19169055565b6116bf6124b9565b6000908152601560205260409020805460ff19169055565b60065460ff16156116fa5760405162461bcd60e51b8152600401610d6690613e30565b6000828152600860205260409020546117265760405163677510db60e11b815260040160405180910390fd5b806117445760405163b562e8dd60e01b815260040160405180910390fd5b600082815260106020526040902054811115611773576040516344e9090d60e11b815260040160405180910390fd5b61177d828261285c565b61179a5760405163a4875a4960e01b815260040160405180910390fd5b6117a48282611649565b34146117c35760405163078d696560e31b815260040160405180910390fd5b6117e18260009081526015602052604090205460ff16151560011490565b156117ff576040516316851fc760e11b815260040160405180910390fd5b61181d826000908152600d602052604090205460ff16151560011490565b61183a576040516316851fc760e11b815260040160405180910390fd5b611845828483612411565b6118625760405163034fc3d760e21b815260040160405180910390fd5b61186a612aa9565b611345828483612aeb565b61187d6124b9565b60005b83518110156118c7576118b584828151811061189e5761189e613d29565b602002602001015184846017805461135890613cee565b806118bf81613d8c565b915050611880565b50505050565b6118d5612a4f565b6114236000612b44565b6118e76124b9565b6000918252600e602052604090912055565b6119016124b9565b611423612b96565b6119116124b9565b6000471161191e57600080fd5b611423612bee565b61192e6124b9565b600091825260076020526040909120805460ff1916911515919091179055565b600a818154811061195e57600080fd5b6000918252602090912001546001600160a01b0316905081565b601a8054610df690613cee565b61198d6124b9565b6000908152600d60205260409020805460ff19166001179055565b60006001600160a01b0382166119d05760405162afb37360e31b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205460ff16151560011490565b816119fe81612c7c565b611051338484612d44565b3373a9dac8f3aedc55d0fe707b86b8a45d246858d2e114611a3d57604051639b96b05160e01b815260040160405180910390fd5b600f55565b611a4a6124b9565b6001600160a01b0316600090815260136020908152604080832093835292905290812055565b611a786124b9565b60008111611a8557600080fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b158015611ac857600080fd5b505afa158015611adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b009190613e5a565b1015611b5a5760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610d66565b60005b600c548110156118c757816001600160a01b031663a9059cbb600a8381548110611b8957611b89613d29565b9060005260206000200160009054906101000a90046001600160a01b03166064600b8581548110611bbc57611bbc613d29565b906000526020600020015487611bd29190613df9565b611bdc9190613e73565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611c2257600080fd5b505af1158015611c36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5a9190613e95565b5080611c6581613d8c565b915050611b5d565b60065460ff1615611c905760405162461bcd60e51b8152600401610d6690613e30565b600084815260086020526040902054611cbc5760405163677510db60e11b815260040160405180910390fd5b82611cda5760405163b562e8dd60e01b815260040160405180910390fd5b600084815260106020526040902054831115611d09576040516344e9090d60e11b815260040160405180910390fd5b611d13848461285c565b611d305760405163a4875a4960e01b815260040160405180910390fd5b611d3a8484611649565b3414611d595760405163078d696560e31b815260040160405180910390fd5b611d778460009081526015602052604090205460ff16151560011490565b1580611d9e5750611d9c846000908152600d602052604090205460ff16151560011490565b155b15611dbc576040516309c7220160e31b815260040160405180910390fd5b611dc885858484611e5d565b611de5576040516315ebf2b560e21b815260040160405180910390fd5b611df0848685612411565b611e0d5760405163034fc3d760e21b815260040160405180910390fd5b611e15612aa9565b611e20848685612aeb565b611e338585856017805461135890613cee565b5050505050565b611e426124b9565b6000908152601560205260409020805460ff19166001179055565b600083815260146020526040812054611eb85760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610d66565b6040516bffffffffffffffffffffffff19606087901b166020820152600090603401604051602081830303815290604052805190602001209050611f3d84848080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508a8152601460205260409020549250859150612e259050565b9695505050505050565b611f4f6124b9565b80611f6d57604051631e1d0ab560e01b815260040160405180910390fd5b60009182526012602052604090912055565b611f87612a4f565b6001600160a01b038116611fad5760405162afb37360e31b815260040160405180910390fd5b611fb6816119a8565b611fd25760405162afb37360e31b815260040160405180910390fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b611ffb6124b9565b6000908152601160205260409020805460ff19169055565b606060405180608001604052806044815260200161417d60449139905090565b61203b6124b9565b6000818152600860205260409020546120675760405163677510db60e11b815260040160405180910390fd5b60008181526020819052604090205460ff166001141561209a5760405163a28a88c160e01b815260040160405180910390fd5b6000908152602081905260409020805460ff19166001179055565b6120bd6124b9565b60008281526014602052604090205481141561211b5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610d66565b60009182526014602052604090912055565b846daaeb6d7670e522a718067333cd4e3b156121d3576001600160a01b0381163314156121ca5760008481526020819052604090205460ff908116146121855760405162461bcd60e51b8152600401610d6690613d3f565b6001600160a01b0386163314806121a157506121a18633610ba5565b6121bd5760405162461bcd60e51b8152600401610d6690613eb2565b6111528686868686612e3b565b6121d381612729565b60008481526020819052604090205460ff908116146122045760405162461bcd60e51b8152600401610d6690613d3f565b6001600160a01b03861633148061222057506122208633610ba5565b61223c5760405162461bcd60e51b8152600401610d6690613eb2565b6112148686868686612e3b565b612251612a4f565b6001600160a01b0381166122b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d66565b6122bf81612b44565b50565b6122ca6124b9565b886122e857604051631e1d0ab560e01b815260040160405180910390fd5b8761230657604051631e1d0ab560e01b815260040160405180910390fd5b805161232557604051631e1d0ab560e01b815260040160405180910390fd5b600061232f612f5c565b9050612345338260016017805461135890613cee565b6000818152601b60209081526040909120835161236492850190613448565b5061236f818b61121c565b61237981896118df565b612383818a6113db565b6000818152600d60205260409020805460ff19168815151790556000818152601160209081526040808320805460ff191689151517905560129091529020849055856123d05760016123d3565b60ff5b6000828152602081905260409020805460ff191660ff929092169190911790556123fd8184611926565b612405612f72565b50505050505050505050565b60008381526011602052604081205460ff16151560011461243457506001611690565b8161245257604051631e1d0ab560e01b815260040160405180910390fd5b6000848152601260209081526040808320546001600160a01b0387168452601383528184208885529092529091205461248c908490613e18565b1115949350505050565b61249e6124b9565b6000908152601160205260409020805460ff19166001179055565b6004546001600160a01b031633908114906000906124d6906119a8565b905081806124e15750805b61253f5760405162461bcd60e51b815260206004820152602960248201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726044820152681034b7102a32b0b69760b91b6064820152608401610d66565b5050565b81518351146125a55760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610d66565b6001600160a01b0384166125cb5760405162461bcd60e51b8152600401610d6690613efb565b336125da818787878787612f89565b60005b84518110156126c35760008582815181106125fa576125fa613d29565b60200260200101519050600085838151811061261857612618613d29565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156126695760405162461bcd60e51b8152600401610d6690613f40565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906126a8908490613e18565b92505081905550505050806126bc90613d8c565b90506125dd565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612713929190613f8a565b60405180910390a4611214818787878787612fba565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561277357600080fd5b505afa158015612787573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ab9190613e95565b801561283d5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561280557600080fd5b505afa158015612819573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283d9190613e95565b6122bf57604051633b79c77360e21b8152336004820152602401610d66565b60008281526007602052604081205460ff1615156001146128a15761288083610f89565b60008481526008602052604090205461289a908490613e18565b1115611690565b50600192915050565b6001600160a01b03841661290a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610d66565b3361292a8160008761291b88613125565b61292488613125565b87612f89565b60008481526001602090815260408083206001600160a01b03891684529091528120805485929061295c908490613e18565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611e3381600087878787613170565b60065460ff16612a055760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610d66565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6004546001600160a01b031633146114235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d66565b600f5460405173a9dac8f3aedc55d0fe707b86b8a45d246858d2e19180156108fc02916000818181858888f193505050501580156122bf573d6000803e3d6000fd5b6001600160a01b0382166000908152601360209081526040808320868452909152902054612b1a908290613e18565b6001600160a01b039092166000908152601360209081526040808320958352949052929092205550565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60065460ff1615612bb95760405162461bcd60e51b8152600401610d6690613e30565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612a323390565b4760005b600c5481101561253f57612c6a600a8281548110612c1257612c12613d29565b9060005260206000200160009054906101000a90046001600160a01b03166064600b8481548110612c4557612c45613d29565b906000526020600020015485612c5b9190613df9565b612c659190613e73565b61323a565b80612c7481613d8c565b915050612bf2565b6daaeb6d7670e522a718067333cd4e3b156122bf57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015612ce457600080fd5b505afa158015612cf8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d1c9190613e95565b6122bf57604051633b79c77360e21b81526001600160a01b0382166004820152602401610d66565b816001600160a01b0316836001600160a01b03161415612db85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610d66565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082612e3285846132d0565b14949350505050565b6001600160a01b038416612e615760405162461bcd60e51b8152600401610d6690613efb565b33612e7181878761291b88613125565b60008481526001602090815260408083206001600160a01b038a16845290915290205483811015612eb45760405162461bcd60e51b8152600401610d6690613f40565b60008581526001602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612ef3908490613e18565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612f53828888888888613170565b50505050505050565b60006018546001612f6d9190613e18565b905090565b60188054906000612f8283613d8c565b9190505550565b60065460ff1615612fac5760405162461bcd60e51b8152600401610d6690613e30565b61121486868686868661333c565b6001600160a01b0384163b156112145760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190612ffe9089908990889088908890600401613fb8565b602060405180830381600087803b15801561301857600080fd5b505af1925050508015613048575060408051601f3d908101601f1916820190925261304591810190614016565b60015b6130f557613054614033565b806308c379a0141561308e575061306961404f565b806130745750613090565b8060405162461bcd60e51b8152600401610d6691906135a7565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610d66565b6001600160e01b0319811663bc197c8160e01b14612f535760405162461bcd60e51b8152600401610d66906140d8565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061315f5761315f613d29565b602090810291909101015292915050565b6001600160a01b0384163b156112145760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906131b49089908990889088908890600401614120565b602060405180830381600087803b1580156131ce57600080fd5b505af19250505080156131fe575060408051601f3d908101601f191682019092526131fb91810190614016565b60015b61320a57613054614033565b6001600160e01b0319811663f23a6e6160e01b14612f535760405162461bcd60e51b8152600401610d66906140d8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613287576040519150601f19603f3d011682016040523d82523d6000602084013e61328c565b606091505b50509050806110515760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610d66565b600081815b84518110156116415760008582815181106132f2576132f2613d29565b602002602001015190508083116133185760008381526020829052604090209250613329565b600081815260208490526040902092505b508061333481613d8c565b9150506132d5565b6001600160a01b0385166133c35760005b83518110156133c15782818151811061336857613368613d29565b60200260200101516008600086848151811061338657613386613d29565b6020026020010151815260200190815260200160002060008282546133ab9190613e18565b909155506133ba905081613d8c565b905061334d565b505b6001600160a01b0384166112145760005b8351811015612f53578281815181106133ef576133ef613d29565b60200260200101516008600086848151811061340d5761340d613d29565b6020026020010151815260200190815260200160002060008282546134329190614165565b90915550613441905081613d8c565b90506133d4565b82805461345490613cee565b90600052602060002090601f01602090048101928261347657600085556134bc565b82601f1061348f57805160ff19168380011785556134bc565b828001600101855582156134bc579182015b828111156134bc5782518255916020019190600101906134a1565b506134c89291506134cc565b5090565b5b808211156134c857600081556001016134cd565b80356001600160a01b03811681146134f857600080fd5b919050565b6000806040838503121561351057600080fd5b613519836134e1565b946020939093013593505050565b6001600160e01b0319811681146122bf57600080fd5b60006020828403121561354f57600080fd5b813561169081613527565b6000815180845260005b8181101561358057602081850181015186830182015201613564565b81811115613592576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611690602083018461355a565b6000602082840312156135cc57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b038111828210171561360e5761360e6135d3565b6040525050565b600082601f83011261362657600080fd5b81356001600160401b0381111561363f5761363f6135d3565b604051613656601f8301601f1916602001826135e9565b81815284602083860101111561366b57600080fd5b816020850160208301376000918101602001919091529392505050565b6000806040838503121561369b57600080fd5b8235915060208301356001600160401b038111156136b857600080fd5b6136c485828601613615565b9150509250929050565b60006001600160401b038211156136e7576136e76135d3565b5060051b60200190565b600082601f83011261370257600080fd5b8135602061370f826136ce565b60405161371c82826135e9565b83815260059390931b850182019282810191508684111561373c57600080fd5b8286015b848110156137575780358352918301918301613740565b509695505050505050565b600080600080600060a0868803121561377a57600080fd5b613783866134e1565b9450613791602087016134e1565b935060408601356001600160401b03808211156137ad57600080fd5b6137b989838a016136f1565b945060608801359150808211156137cf57600080fd5b6137db89838a016136f1565b935060808801359150808211156137f157600080fd5b506137fe88828901613615565b9150509295509295909350565b6000806040838503121561381e57600080fd5b50508035926020909101359150565b60008060006060848603121561384257600080fd5b61384b846134e1565b95602085013595506040909401359392505050565b60006020828403121561387257600080fd5b611690826134e1565b600082601f83011261388c57600080fd5b81356020613899826136ce565b6040516138a682826135e9565b83815260059390931b85018201928281019150868411156138c657600080fd5b8286015b84811015613757576138db816134e1565b83529183019183016138ca565b600080604083850312156138fb57600080fd5b82356001600160401b038082111561391257600080fd5b61391e8683870161387b565b9350602085013591508082111561393457600080fd5b506136c4858286016136f1565b600081518084526020808501945080840160005b8381101561397157815187529582019590820190600101613955565b509495945050505050565b6020815260006116906020830184613941565b600080604083850312156139a257600080fd5b823591506139b2602084016134e1565b90509250929050565b6000806000606084860312156139d057600080fd5b83356001600160401b038111156139e657600080fd5b6139f28682870161387b565b9660208601359650604090950135949350505050565b80151581146122bf57600080fd5b60008060408385031215613a2957600080fd5b823591506020830135613a3b81613a08565b809150509250929050565b60008060408385031215613a5957600080fd5b613a62836134e1565b91506020830135613a3b81613a08565b60008083601f840112613a8457600080fd5b5081356001600160401b03811115613a9b57600080fd5b6020830191508360208260051b8501011115613ab657600080fd5b9250929050565b600080600080600060808688031215613ad557600080fd5b613ade866134e1565b9450602086013593506040860135925060608601356001600160401b03811115613b0757600080fd5b613b1388828901613a72565b969995985093965092949392505050565b60008060008060608587031215613b3a57600080fd5b613b43856134e1565b93506020850135925060408501356001600160401b03811115613b6557600080fd5b613b7187828801613a72565b95989497509550505050565b60008060408385031215613b9057600080fd5b613b99836134e1565b91506139b2602084016134e1565b600080600080600060a08688031215613bbf57600080fd5b613bc8866134e1565b9450613bd6602087016134e1565b9350604086013592506060860135915060808601356001600160401b03811115613bff57600080fd5b6137fe88828901613615565b60008060008060008060008060006101208a8c031215613c2a57600080fd5b8935985060208a0135975060408a0135965060608a0135613c4a81613a08565b955060808a0135613c5a81613a08565b945060a08a0135613c6a81613a08565b935060c08a0135925060e08a0135613c8181613a08565b91506101008a01356001600160401b03811115613c9d57600080fd5b613ca98c828d01613615565b9150509295985092959850929598565b600080600060608486031215613cce57600080fd5b83359250613cde602085016134e1565b9150604084013590509250925092565b600181811c90821680613d0257607f821691505b60208210811415613d2357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60208082526017908201527f546f6b656e206973206e6f7420747261646561626c6521000000000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415613da057613da0613d76565b5060010190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6000816000190483118215151615613e1357613e13613d76565b500290565b60008219821115613e2b57613e2b613d76565b500190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b600060208284031215613e6c57600080fd5b5051919050565b600082613e9057634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215613ea757600080fd5b815161169081613a08565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000613f9d6040830185613941565b8281036020840152613faf8185613941565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090613fe490830186613941565b8281036060840152613ff68186613941565b9050828103608084015261400a818561355a565b98975050505050505050565b60006020828403121561402857600080fd5b815161169081613527565b600060033d111561404c5760046000803e5060005160e01c5b90565b600060443d101561405d5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561408c57505050505090565b82850191508151818111156140a45750505050505090565b843d87010160208285010111156140be5750505050505090565b6140cd602082860101876135e9565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061415a9083018461355a565b979650505050505050565b60008282101561417757614177613d76565b50039056fe68747470733a2f2f6d657461646174612e6d696e74706c65782e78797a2f7769354630396c3157745a396e304130496c574d2f636f6e74726163742d6d65746164617461a2646970667358221220d7ed512f93c9312bbf747b96074cfe5c75debefd640be0840bddb1cc4275648b64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103e35760003560e01c8063853828b611610208578063bec0904b11610118578063eb238e81116100ab578063f2fde38b1161007a578063f2fde38b14610c68578063f623bb8b14610c88578063f7436e3714610c9e578063fc2f383214610cbe578063fe6d3cc814610cde57600080fd5b8063eb238e8114610bd3578063eec8e90814610c08578063f1e3311514610c28578063f242432a14610c4857600080fd5b8063e6c6990a116100e7578063e6c6990a14610b3b578063e82da69114610b55578063e8a3d48514610b75578063e985e9c514610b8a57600080fd5b8063bec0904b14610aa6578063d2de022f14610adb578063d8800f9414610afb578063dfdedf6914610b1b57600080fd5b8063a1af10ca1161019b578063b40ebceb1161016a578063b40ebceb14610a10578063bb6074e014610a30578063bb62115e14610a43578063bc1f0ab514610a59578063bd85b03914610a7957600080fd5b8063a1af10ca14610990578063a22cb465146109b0578063a7593fb7146109d0578063ac80746a146109f057600080fd5b80638da5cb5b116101d75780638da5cb5b1461091057806395d89b411461092e5780639b192647146109435780639e490e241461096357600080fd5b8063853828b614610876578063869e9a001461088b578063891bbe73146108ab5780638c04b8e9146108e357600080fd5b80634790c92511610303578063628d35c911610296578063715018a611610265578063715018a6146107c2578063736e04fa146107d75780637aa9c33f1461080c57806383e083c31461082c5780638456cb591461086157600080fd5b8063628d35c91461074f5780636586375b1461076f5780636af3ef581461078f5780636c6acd4d146107a257600080fd5b80634e5298a0116102d25780634e5298a0146106a85780634f558e79146106e85780635c975abb146107175780635cf4ee911461072f57600080fd5b80634790c925146106015780634bf4e087146106215780634d09ae6d1461064e5780634e1273f41461067b57600080fd5b80632eb2c2d61161037b5780633e07311c1161034a5780633e07311c146105965780633e511168146105ac5780633f4ba83a146105cc57806343696f18146105e157600080fd5b80632eb2c2d61461050f5780633832e8701461052f57806338b903331461054f57806338df41ac1461057657600080fd5b8063134902fd116103b7578063134902fd1461048d578063143727c9146104ad578063162094c4146104cd578063286c8137146104ef57600080fd5b8062fdd58e146103e857806301ffc9a71461041b57806306fdde031461044b5780630e89341c1461046d575b600080fd5b3480156103f457600080fd5b506104086104033660046134fd565b610cfe565b6040519081526020015b60405180910390f35b34801561042757600080fd5b5061043b61043636600461353d565b610d97565b6040519015158152602001610412565b34801561045757600080fd5b50610460610de9565b60405161041291906135a7565b34801561047957600080fd5b506104606104883660046135ba565b610e77565b34801561049957600080fd5b5061043b6104a83660046135ba565b610f44565b3480156104b957600080fd5b506104086104c83660046135ba565b610f89565b3480156104d957600080fd5b506104ed6104e8366004613688565b610ffe565b005b3480156104fb57600080fd5b5061040861050a3660046135ba565b611056565b34801561051b57600080fd5b506104ed61052a366004613762565b611077565b34801561053b57600080fd5b506104ed61054a36600461380b565b61121c565b34801561055b57600080fd5b50610564600481565b60405160ff9091168152602001610412565b34801561058257600080fd5b506104ed61059136600461382d565b6112cc565b3480156105a257600080fd5b50610408600c5481565b3480156105b857600080fd5b506104ed6105c736600461380b565b6113db565b3480156105d857600080fd5b506104ed611413565b3480156105ed57600080fd5b506104ed6105fc366004613860565b611425565b34801561060d57600080fd5b506104ed61061c3660046135ba565b61149e565b34801561062d57600080fd5b5061040861063c3660046135ba565b60009081526012602052604090205490565b34801561065a57600080fd5b506104086106693660046135ba565b6000908152600e602052604090205490565b34801561068757600080fd5b5061069b6106963660046138e8565b611520565b604051610412919061397c565b3480156106b457600080fd5b506104086106c336600461398f565b6001600160a01b03166000908152601360209081526040808320938352929052205490565b3480156106f457600080fd5b5061043b6107033660046135ba565b600090815260086020526040902054151590565b34801561072357600080fd5b5060065460ff1661043b565b34801561073b57600080fd5b5061040861074a36600461380b565b611649565b34801561075b57600080fd5b506104ed61076a3660046135ba565b611697565b34801561077b57600080fd5b506104ed61078a3660046135ba565b6116b7565b6104ed61079d36600461382d565b6116d7565b3480156107ae57600080fd5b506104ed6107bd3660046139bb565b611875565b3480156107ce57600080fd5b506104ed6118cd565b3480156107e357600080fd5b5061043b6107f23660046135ba565b60009081526011602052604090205460ff16151560011490565b34801561081857600080fd5b506104ed61082736600461380b565b6118df565b34801561083857600080fd5b5061043b6108473660046135ba565b6000908152600d602052604090205460ff16151560011490565b34801561086d57600080fd5b506104ed6118f9565b34801561088257600080fd5b506104ed611909565b34801561089757600080fd5b506104ed6108a6366004613a16565b611926565b3480156108b757600080fd5b506108cb6108c63660046135ba565b61194e565b6040516001600160a01b039091168152602001610412565b3480156108ef57600080fd5b506104086108fe3660046135ba565b60009081526014602052604090205490565b34801561091c57600080fd5b506004546001600160a01b03166108cb565b34801561093a57600080fd5b50610460611978565b34801561094f57600080fd5b506104ed61095e3660046135ba565b611985565b34801561096f57600080fd5b5061040861097e3660046135ba565b60009081526010602052604090205490565b34801561099c57600080fd5b5061043b6109ab366004613860565b6119a8565b3480156109bc57600080fd5b506104ed6109cb366004613a46565b6119f4565b3480156109dc57600080fd5b506104ed6109eb3660046135ba565b611a09565b3480156109fc57600080fd5b506104ed610a0b36600461398f565b611a42565b348015610a1c57600080fd5b506104ed610a2b3660046134fd565b611a70565b6104ed610a3e366004613abd565b611c6d565b348015610a4f57600080fd5b5061040860185481565b348015610a6557600080fd5b506104ed610a743660046135ba565b611e3a565b348015610a8557600080fd5b50610408610a943660046135ba565b60009081526008602052604090205490565b348015610ab257600080fd5b5061043b610ac13660046135ba565b60009081526007602052604090205460ff16151560011490565b348015610ae757600080fd5b5061043b610af6366004613b24565b611e5d565b348015610b0757600080fd5b506104ed610b1636600461380b565b611f47565b348015610b2757600080fd5b506104ed610b36366004613860565b611f7f565b348015610b4757600080fd5b5060165461043b9060ff1681565b348015610b6157600080fd5b506104ed610b703660046135ba565b611ff3565b348015610b8157600080fd5b50610460612013565b348015610b9657600080fd5b5061043b610ba5366004613b7d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b348015610bdf57600080fd5b5061043b610bee3660046135ba565b60009081526015602052604090205460ff16151560011490565b348015610c1457600080fd5b506104ed610c233660046135ba565b612033565b348015610c3457600080fd5b506104ed610c4336600461380b565b6120b5565b348015610c5457600080fd5b506104ed610c63366004613ba7565b61212d565b348015610c7457600080fd5b506104ed610c83366004613860565b612249565b348015610c9457600080fd5b50610408600f5481565b348015610caa57600080fd5b506104ed610cb9366004613c0b565b6122c2565b348015610cca57600080fd5b5061043b610cd9366004613cb9565b612411565b348015610cea57600080fd5b506104ed610cf93660046135ba565b612496565b60006001600160a01b038316610d6f5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b1480610dc857506001600160e01b031982166303a24d0760e21b145b80610de357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60198054610df690613cee565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2290613cee565b8015610e6f5780601f10610e4457610100808354040283529160200191610e6f565b820191906000526020600020905b815481529060010190602001808311610e5257829003601f168201915b505050505081565b600081815260086020526040902054606090610ea65760405163677510db60e11b815260040160405180910390fd5b6000828152601b602052604090208054610ebf90613cee565b80601f0160208091040260200160405190810160405280929190818152602001828054610eeb90613cee565b8015610f385780601f10610f0d57610100808354040283529160200191610f38565b820191906000526020600020905b815481529060010190602001808311610f1b57829003601f168201915b50505050509050919050565b600081815260086020526040812054610f705760405163677510db60e11b815260040160405180910390fd5b5060009081526020819052604090205460ff9081161490565b600081815260086020526040812054610fb55760405163677510db60e11b815260040160405180910390fd5b610fd38260009081526007602052604090205460ff16151560011490565b610feb57600082815260096020526040902054610de3565b5060009081526008602052604090205490565b6110066124b9565b6000828152600860205260409020546110325760405163677510db60e11b815260040160405180910390fd5b6000828152601b60209081526040909120825161105192840190613448565b505050565b600b818154811061106657600080fd5b600091825260209091200154905081565b846daaeb6d7670e522a718067333cd4e3b15611160576001600160a01b0381163314156111575760005b845181101561110c576000808683815181106110bf576110bf613d29565b60209081029190910181015182528101919091526040016000205460ff908116146110fc5760405162461bcd60e51b8152600401610d6690613d3f565b61110581613d8c565b90506110a1565b506001600160a01b03861633148061112957506111298633610ba5565b6111455760405162461bcd60e51b8152600401610d6690613da7565b6111528686868686612543565b611214565b61116081612729565b60005b84518110156111ce5760008086838151811061118157611181613d29565b60209081029190910181015182528101919091526040016000205460ff908116146111be5760405162461bcd60e51b8152600401610d6690613d3f565b6111c781613d8c565b9050611163565b506001600160a01b0386163314806111eb57506111eb8633610ba5565b6112075760405162461bcd60e51b8152600401610d6690613da7565b6112148686868686612543565b505050505050565b6112246124b9565b6000828152600860205260409020546112505760405163677510db60e11b815260040160405180910390fd5b61126e8260009081526007602052604090205460ff16151560011490565b1561128c5760405163222f7ae360e21b815260040160405180910390fd5b60008281526009602052604090205481116112ba576040516325ede60b60e11b815260040160405180910390fd5b60009182526009602052604090912055565b6112d46124b9565b6000828152600860205260409020546113005760405163677510db60e11b815260040160405180910390fd5b8061131e5760405163b562e8dd60e01b815260040160405180910390fd5b611328828261285c565b6113455760405163a4875a4960e01b815260040160405180910390fd5b6110518383836017805461135890613cee565b80601f016020809104026020016040519081016040528092919081815260200182805461138490613cee565b80156113d15780601f106113a6576101008083540402835291602001916113d1565b820191906000526020600020905b8154815290600101906020018083116113b457829003601f168201915b50505050506128aa565b6113e36124b9565b8061140157604051631e1d0ab560e01b815260040160405180910390fd5b60009182526010602052604090912055565b61141b6124b9565b6114236129bc565b565b61142d612a4f565b6001600160a01b0381166114535760405162afb37360e31b815260040160405180910390fd5b61145c816119a8565b1561147a57604051631002377360e01b815260040160405180910390fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6114a66124b9565b6000818152600860205260409020546114d25760405163677510db60e11b815260040160405180910390fd5b60008181526020819052604090205460ff90811614156115055760405163a28a88c160e01b815260040160405180910390fd5b6000908152602081905260409020805460ff191660ff179055565b606081518351146115855760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610d66565b600083516001600160401b038111156115a0576115a06135d3565b6040519080825280602002602001820160405280156115c9578160200160208202803683370190505b50905060005b8451811015611641576116148582815181106115ed576115ed613d29565b602002602001015185838151811061160757611607613d29565b6020026020010151610cfe565b82828151811061162657611626613d29565b602090810291909101015261163a81613d8c565b90506115cf565b509392505050565b60008161166957604051631e1d0ab560e01b815260040160405180910390fd5b600f546000848152600e6020526040902054611686908490613df9565b6116909190613e18565b9392505050565b61169f6124b9565b6000908152600d60205260409020805460ff19169055565b6116bf6124b9565b6000908152601560205260409020805460ff19169055565b60065460ff16156116fa5760405162461bcd60e51b8152600401610d6690613e30565b6000828152600860205260409020546117265760405163677510db60e11b815260040160405180910390fd5b806117445760405163b562e8dd60e01b815260040160405180910390fd5b600082815260106020526040902054811115611773576040516344e9090d60e11b815260040160405180910390fd5b61177d828261285c565b61179a5760405163a4875a4960e01b815260040160405180910390fd5b6117a48282611649565b34146117c35760405163078d696560e31b815260040160405180910390fd5b6117e18260009081526015602052604090205460ff16151560011490565b156117ff576040516316851fc760e11b815260040160405180910390fd5b61181d826000908152600d602052604090205460ff16151560011490565b61183a576040516316851fc760e11b815260040160405180910390fd5b611845828483612411565b6118625760405163034fc3d760e21b815260040160405180910390fd5b61186a612aa9565b611345828483612aeb565b61187d6124b9565b60005b83518110156118c7576118b584828151811061189e5761189e613d29565b602002602001015184846017805461135890613cee565b806118bf81613d8c565b915050611880565b50505050565b6118d5612a4f565b6114236000612b44565b6118e76124b9565b6000918252600e602052604090912055565b6119016124b9565b611423612b96565b6119116124b9565b6000471161191e57600080fd5b611423612bee565b61192e6124b9565b600091825260076020526040909120805460ff1916911515919091179055565b600a818154811061195e57600080fd5b6000918252602090912001546001600160a01b0316905081565b601a8054610df690613cee565b61198d6124b9565b6000908152600d60205260409020805460ff19166001179055565b60006001600160a01b0382166119d05760405162afb37360e31b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205460ff16151560011490565b816119fe81612c7c565b611051338484612d44565b3373a9dac8f3aedc55d0fe707b86b8a45d246858d2e114611a3d57604051639b96b05160e01b815260040160405180910390fd5b600f55565b611a4a6124b9565b6001600160a01b0316600090815260136020908152604080832093835292905290812055565b611a786124b9565b60008111611a8557600080fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b158015611ac857600080fd5b505afa158015611adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b009190613e5a565b1015611b5a5760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610d66565b60005b600c548110156118c757816001600160a01b031663a9059cbb600a8381548110611b8957611b89613d29565b9060005260206000200160009054906101000a90046001600160a01b03166064600b8581548110611bbc57611bbc613d29565b906000526020600020015487611bd29190613df9565b611bdc9190613e73565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611c2257600080fd5b505af1158015611c36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5a9190613e95565b5080611c6581613d8c565b915050611b5d565b60065460ff1615611c905760405162461bcd60e51b8152600401610d6690613e30565b600084815260086020526040902054611cbc5760405163677510db60e11b815260040160405180910390fd5b82611cda5760405163b562e8dd60e01b815260040160405180910390fd5b600084815260106020526040902054831115611d09576040516344e9090d60e11b815260040160405180910390fd5b611d13848461285c565b611d305760405163a4875a4960e01b815260040160405180910390fd5b611d3a8484611649565b3414611d595760405163078d696560e31b815260040160405180910390fd5b611d778460009081526015602052604090205460ff16151560011490565b1580611d9e5750611d9c846000908152600d602052604090205460ff16151560011490565b155b15611dbc576040516309c7220160e31b815260040160405180910390fd5b611dc885858484611e5d565b611de5576040516315ebf2b560e21b815260040160405180910390fd5b611df0848685612411565b611e0d5760405163034fc3d760e21b815260040160405180910390fd5b611e15612aa9565b611e20848685612aeb565b611e338585856017805461135890613cee565b5050505050565b611e426124b9565b6000908152601560205260409020805460ff19166001179055565b600083815260146020526040812054611eb85760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610d66565b6040516bffffffffffffffffffffffff19606087901b166020820152600090603401604051602081830303815290604052805190602001209050611f3d84848080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508a8152601460205260409020549250859150612e259050565b9695505050505050565b611f4f6124b9565b80611f6d57604051631e1d0ab560e01b815260040160405180910390fd5b60009182526012602052604090912055565b611f87612a4f565b6001600160a01b038116611fad5760405162afb37360e31b815260040160405180910390fd5b611fb6816119a8565b611fd25760405162afb37360e31b815260040160405180910390fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b611ffb6124b9565b6000908152601160205260409020805460ff19169055565b606060405180608001604052806044815260200161417d60449139905090565b61203b6124b9565b6000818152600860205260409020546120675760405163677510db60e11b815260040160405180910390fd5b60008181526020819052604090205460ff166001141561209a5760405163a28a88c160e01b815260040160405180910390fd5b6000908152602081905260409020805460ff19166001179055565b6120bd6124b9565b60008281526014602052604090205481141561211b5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610d66565b60009182526014602052604090912055565b846daaeb6d7670e522a718067333cd4e3b156121d3576001600160a01b0381163314156121ca5760008481526020819052604090205460ff908116146121855760405162461bcd60e51b8152600401610d6690613d3f565b6001600160a01b0386163314806121a157506121a18633610ba5565b6121bd5760405162461bcd60e51b8152600401610d6690613eb2565b6111528686868686612e3b565b6121d381612729565b60008481526020819052604090205460ff908116146122045760405162461bcd60e51b8152600401610d6690613d3f565b6001600160a01b03861633148061222057506122208633610ba5565b61223c5760405162461bcd60e51b8152600401610d6690613eb2565b6112148686868686612e3b565b612251612a4f565b6001600160a01b0381166122b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d66565b6122bf81612b44565b50565b6122ca6124b9565b886122e857604051631e1d0ab560e01b815260040160405180910390fd5b8761230657604051631e1d0ab560e01b815260040160405180910390fd5b805161232557604051631e1d0ab560e01b815260040160405180910390fd5b600061232f612f5c565b9050612345338260016017805461135890613cee565b6000818152601b60209081526040909120835161236492850190613448565b5061236f818b61121c565b61237981896118df565b612383818a6113db565b6000818152600d60205260409020805460ff19168815151790556000818152601160209081526040808320805460ff191689151517905560129091529020849055856123d05760016123d3565b60ff5b6000828152602081905260409020805460ff191660ff929092169190911790556123fd8184611926565b612405612f72565b50505050505050505050565b60008381526011602052604081205460ff16151560011461243457506001611690565b8161245257604051631e1d0ab560e01b815260040160405180910390fd5b6000848152601260209081526040808320546001600160a01b0387168452601383528184208885529092529091205461248c908490613e18565b1115949350505050565b61249e6124b9565b6000908152601160205260409020805460ff19166001179055565b6004546001600160a01b031633908114906000906124d6906119a8565b905081806124e15750805b61253f5760405162461bcd60e51b815260206004820152602960248201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726044820152681034b7102a32b0b69760b91b6064820152608401610d66565b5050565b81518351146125a55760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610d66565b6001600160a01b0384166125cb5760405162461bcd60e51b8152600401610d6690613efb565b336125da818787878787612f89565b60005b84518110156126c35760008582815181106125fa576125fa613d29565b60200260200101519050600085838151811061261857612618613d29565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156126695760405162461bcd60e51b8152600401610d6690613f40565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906126a8908490613e18565b92505081905550505050806126bc90613d8c565b90506125dd565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612713929190613f8a565b60405180910390a4611214818787878787612fba565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561277357600080fd5b505afa158015612787573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ab9190613e95565b801561283d5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561280557600080fd5b505afa158015612819573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283d9190613e95565b6122bf57604051633b79c77360e21b8152336004820152602401610d66565b60008281526007602052604081205460ff1615156001146128a15761288083610f89565b60008481526008602052604090205461289a908490613e18565b1115611690565b50600192915050565b6001600160a01b03841661290a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610d66565b3361292a8160008761291b88613125565b61292488613125565b87612f89565b60008481526001602090815260408083206001600160a01b03891684529091528120805485929061295c908490613e18565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611e3381600087878787613170565b60065460ff16612a055760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610d66565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6004546001600160a01b031633146114235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d66565b600f5460405173a9dac8f3aedc55d0fe707b86b8a45d246858d2e19180156108fc02916000818181858888f193505050501580156122bf573d6000803e3d6000fd5b6001600160a01b0382166000908152601360209081526040808320868452909152902054612b1a908290613e18565b6001600160a01b039092166000908152601360209081526040808320958352949052929092205550565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60065460ff1615612bb95760405162461bcd60e51b8152600401610d6690613e30565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612a323390565b4760005b600c5481101561253f57612c6a600a8281548110612c1257612c12613d29565b9060005260206000200160009054906101000a90046001600160a01b03166064600b8481548110612c4557612c45613d29565b906000526020600020015485612c5b9190613df9565b612c659190613e73565b61323a565b80612c7481613d8c565b915050612bf2565b6daaeb6d7670e522a718067333cd4e3b156122bf57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015612ce457600080fd5b505afa158015612cf8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d1c9190613e95565b6122bf57604051633b79c77360e21b81526001600160a01b0382166004820152602401610d66565b816001600160a01b0316836001600160a01b03161415612db85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610d66565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082612e3285846132d0565b14949350505050565b6001600160a01b038416612e615760405162461bcd60e51b8152600401610d6690613efb565b33612e7181878761291b88613125565b60008481526001602090815260408083206001600160a01b038a16845290915290205483811015612eb45760405162461bcd60e51b8152600401610d6690613f40565b60008581526001602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612ef3908490613e18565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612f53828888888888613170565b50505050505050565b60006018546001612f6d9190613e18565b905090565b60188054906000612f8283613d8c565b9190505550565b60065460ff1615612fac5760405162461bcd60e51b8152600401610d6690613e30565b61121486868686868661333c565b6001600160a01b0384163b156112145760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190612ffe9089908990889088908890600401613fb8565b602060405180830381600087803b15801561301857600080fd5b505af1925050508015613048575060408051601f3d908101601f1916820190925261304591810190614016565b60015b6130f557613054614033565b806308c379a0141561308e575061306961404f565b806130745750613090565b8060405162461bcd60e51b8152600401610d6691906135a7565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610d66565b6001600160e01b0319811663bc197c8160e01b14612f535760405162461bcd60e51b8152600401610d66906140d8565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061315f5761315f613d29565b602090810291909101015292915050565b6001600160a01b0384163b156112145760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906131b49089908990889088908890600401614120565b602060405180830381600087803b1580156131ce57600080fd5b505af19250505080156131fe575060408051601f3d908101601f191682019092526131fb91810190614016565b60015b61320a57613054614033565b6001600160e01b0319811663f23a6e6160e01b14612f535760405162461bcd60e51b8152600401610d66906140d8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613287576040519150601f19603f3d011682016040523d82523d6000602084013e61328c565b606091505b50509050806110515760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610d66565b600081815b84518110156116415760008582815181106132f2576132f2613d29565b602002602001015190508083116133185760008381526020829052604090209250613329565b600081815260208490526040902092505b508061333481613d8c565b9150506132d5565b6001600160a01b0385166133c35760005b83518110156133c15782818151811061336857613368613d29565b60200260200101516008600086848151811061338657613386613d29565b6020026020010151815260200190815260200160002060008282546133ab9190613e18565b909155506133ba905081613d8c565b905061334d565b505b6001600160a01b0384166112145760005b8351811015612f53578281815181106133ef576133ef613d29565b60200260200101516008600086848151811061340d5761340d613d29565b6020026020010151815260200190815260200160002060008282546134329190614165565b90915550613441905081613d8c565b90506133d4565b82805461345490613cee565b90600052602060002090601f01602090048101928261347657600085556134bc565b82601f1061348f57805160ff19168380011785556134bc565b828001600101855582156134bc579182015b828111156134bc5782518255916020019190600101906134a1565b506134c89291506134cc565b5090565b5b808211156134c857600081556001016134cd565b80356001600160a01b03811681146134f857600080fd5b919050565b6000806040838503121561351057600080fd5b613519836134e1565b946020939093013593505050565b6001600160e01b0319811681146122bf57600080fd5b60006020828403121561354f57600080fd5b813561169081613527565b6000815180845260005b8181101561358057602081850181015186830182015201613564565b81811115613592576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611690602083018461355a565b6000602082840312156135cc57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b038111828210171561360e5761360e6135d3565b6040525050565b600082601f83011261362657600080fd5b81356001600160401b0381111561363f5761363f6135d3565b604051613656601f8301601f1916602001826135e9565b81815284602083860101111561366b57600080fd5b816020850160208301376000918101602001919091529392505050565b6000806040838503121561369b57600080fd5b8235915060208301356001600160401b038111156136b857600080fd5b6136c485828601613615565b9150509250929050565b60006001600160401b038211156136e7576136e76135d3565b5060051b60200190565b600082601f83011261370257600080fd5b8135602061370f826136ce565b60405161371c82826135e9565b83815260059390931b850182019282810191508684111561373c57600080fd5b8286015b848110156137575780358352918301918301613740565b509695505050505050565b600080600080600060a0868803121561377a57600080fd5b613783866134e1565b9450613791602087016134e1565b935060408601356001600160401b03808211156137ad57600080fd5b6137b989838a016136f1565b945060608801359150808211156137cf57600080fd5b6137db89838a016136f1565b935060808801359150808211156137f157600080fd5b506137fe88828901613615565b9150509295509295909350565b6000806040838503121561381e57600080fd5b50508035926020909101359150565b60008060006060848603121561384257600080fd5b61384b846134e1565b95602085013595506040909401359392505050565b60006020828403121561387257600080fd5b611690826134e1565b600082601f83011261388c57600080fd5b81356020613899826136ce565b6040516138a682826135e9565b83815260059390931b85018201928281019150868411156138c657600080fd5b8286015b84811015613757576138db816134e1565b83529183019183016138ca565b600080604083850312156138fb57600080fd5b82356001600160401b038082111561391257600080fd5b61391e8683870161387b565b9350602085013591508082111561393457600080fd5b506136c4858286016136f1565b600081518084526020808501945080840160005b8381101561397157815187529582019590820190600101613955565b509495945050505050565b6020815260006116906020830184613941565b600080604083850312156139a257600080fd5b823591506139b2602084016134e1565b90509250929050565b6000806000606084860312156139d057600080fd5b83356001600160401b038111156139e657600080fd5b6139f28682870161387b565b9660208601359650604090950135949350505050565b80151581146122bf57600080fd5b60008060408385031215613a2957600080fd5b823591506020830135613a3b81613a08565b809150509250929050565b60008060408385031215613a5957600080fd5b613a62836134e1565b91506020830135613a3b81613a08565b60008083601f840112613a8457600080fd5b5081356001600160401b03811115613a9b57600080fd5b6020830191508360208260051b8501011115613ab657600080fd5b9250929050565b600080600080600060808688031215613ad557600080fd5b613ade866134e1565b9450602086013593506040860135925060608601356001600160401b03811115613b0757600080fd5b613b1388828901613a72565b969995985093965092949392505050565b60008060008060608587031215613b3a57600080fd5b613b43856134e1565b93506020850135925060408501356001600160401b03811115613b6557600080fd5b613b7187828801613a72565b95989497509550505050565b60008060408385031215613b9057600080fd5b613b99836134e1565b91506139b2602084016134e1565b600080600080600060a08688031215613bbf57600080fd5b613bc8866134e1565b9450613bd6602087016134e1565b9350604086013592506060860135915060808601356001600160401b03811115613bff57600080fd5b6137fe88828901613615565b60008060008060008060008060006101208a8c031215613c2a57600080fd5b8935985060208a0135975060408a0135965060608a0135613c4a81613a08565b955060808a0135613c5a81613a08565b945060a08a0135613c6a81613a08565b935060c08a0135925060e08a0135613c8181613a08565b91506101008a01356001600160401b03811115613c9d57600080fd5b613ca98c828d01613615565b9150509295985092959850929598565b600080600060608486031215613cce57600080fd5b83359250613cde602085016134e1565b9150604084013590509250925092565b600181811c90821680613d0257607f821691505b60208210811415613d2357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60208082526017908201527f546f6b656e206973206e6f7420747261646561626c6521000000000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415613da057613da0613d76565b5060010190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6000816000190483118215151615613e1357613e13613d76565b500290565b60008219821115613e2b57613e2b613d76565b500190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b600060208284031215613e6c57600080fd5b5051919050565b600082613e9057634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215613ea757600080fd5b815161169081613a08565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000613f9d6040830185613941565b8281036020840152613faf8185613941565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090613fe490830186613941565b8281036060840152613ff68186613941565b9050828103608084015261400a818561355a565b98975050505050505050565b60006020828403121561402857600080fd5b815161169081613527565b600060033d111561404c5760046000803e5060005160e01c5b90565b600060443d101561405d5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561408c57505050505090565b82850191508151818111156140a45750505050505090565b843d87010160208285010111156140be5750505050505090565b6140cd602082860101876135e9565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061415a9083018461355a565b979650505050505050565b60008282101561417757614177613d76565b50039056fe68747470733a2f2f6d657461646174612e6d696e74706c65782e78797a2f7769354630396c3157745a396e304130496c574d2f636f6e74726163742d6d65746164617461a2646970667358221220d7ed512f93c9312bbf747b96074cfe5c75debefd640be0840bddb1cc4275648b64736f6c63430008090033

Deployed Bytecode Sourcemap

63190:8350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31104:231;;;;;;;;;;-1:-1:-1;31104:231:0;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;31104:231:0;;;;;;;;30133:310;;;;;;;;;;-1:-1:-1;30133:310:0;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;30133:310:0;1019:187:1;63646:33:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;63935:168::-;;;;;;;;;;-1:-1:-1;63935:168:0;;;;;:::i;:::-;;:::i;70599:188::-;;;;;;;;;;-1:-1:-1;70599:188:0;;;;;:::i;:::-;;:::i;49805:224::-;;;;;;;;;;-1:-1:-1;49805:224:0;;;;;:::i;:::-;;:::i;69231:190::-;;;;;;;;;;-1:-1:-1;69231:190:0;;;;;:::i;:::-;;:::i;:::-;;56533:36;;;;;;;;;;-1:-1:-1;56533:36:0;;;;;:::i;:::-;;:::i;33179:617::-;;;;;;;;;;-1:-1:-1;33179:617:0;;;;;:::i;:::-;;:::i;50041:366::-;;;;;;;;;;-1:-1:-1;50041:366:0;;;;;:::i;:::-;;:::i;63526:42::-;;;;;;;;;;;;63567:1;63526:42;;;;;5731:4:1;5719:17;;;5701:36;;5689:2;5674:18;63526:42:0;5559:184:1;64155:311:0;;;;;;;;;;-1:-1:-1;64155:311:0;;;;;:::i;:::-;;:::i;56574:38::-;;;;;;;;;;;;;;;;59055:209;;;;;;;;;;-1:-1:-1;59055:209:0;;;;;:::i;:::-;;:::i;68969:71::-;;;;;;;;;;;;;:::i;46186:210::-;;;;;;;;;;-1:-1:-1;46186:210:0;;;;;:::i;:::-;;:::i;70251:249::-;;;;;;;;;;-1:-1:-1;70251:249:0;;;;;:::i;:::-;;:::i;61818:106::-;;;;;;;;;;-1:-1:-1;61818:106:0;;;;;:::i;:::-;61875:7;61900:16;;;:11;:16;;;;;;;61818:106;58278:109;;;;;;;;;;-1:-1:-1;58278:109:0;;;;;:::i;:::-;58337:7;58364:15;;;:10;:15;;;;;;;58278:109;31497:524;;;;;;;;;;-1:-1:-1;31497:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;62347:136::-;;;;;;;;;;-1:-1:-1;62347:136:0;;;;;:::i;:::-;-1:-1:-1;;;;;62449:21:0;62424:7;62449:21;;;:11;:21;;;;;;;;:26;;;;;;;;;62347:136;50515:126;;;;;;;;;;-1:-1:-1;50515:126:0;;;;;:::i;:::-;50572:4;49252:17;;;:12;:17;;;;;;-1:-1:-1;;;50515:126:0;2818:86;;;;;;;;;;-1:-1:-1;2889:7:0;;;;2818:86;;69569:192;;;;;;;;;;-1:-1:-1;69569:192:0;;;;;:::i;:::-;;:::i;62717:101::-;;;;;;;;;;-1:-1:-1;62717:101:0;;;;;:::i;:::-;;:::i;55917:119::-;;;;;;;;;;-1:-1:-1;55917:119:0;;;;;:::i;:::-;;:::i;64972:705::-;;;;;;:::i;:::-;;:::i;64472:236::-;;;;;;;;;;-1:-1:-1;64472:236:0;;;;;:::i;:::-;;:::i;5787:103::-;;;;;;;;;;;;;:::i;62045:120::-;;;;;;;;;;-1:-1:-1;62045:120:0;;;;;:::i;:::-;62106:4;62128:21;;;:16;:21;;;;;;;;:29;;:21;:29;;62045:120;58395:127;;;;;;;;;;-1:-1:-1;58395:127:0;;;;;:::i;:::-;;:::i;62826:112::-;;;;;;;;;;-1:-1:-1;62826:112:0;;;;;:::i;:::-;62882:4;62906:16;;;:11;:16;;;;;;;;:24;;:16;:24;;62826:112;68817:67;;;;;;;;;;;;;:::i;56619:118::-;;;;;;;;;;;;;:::i;48140:152::-;;;;;;;;;;-1:-1:-1;48140:152:0;;;;;:::i;:::-;;:::i;56448:80::-;;;;;;;;;;-1:-1:-1;56448:80:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9656:32:1;;;9638:51;;9626:2;9611:18;56448:80:0;9492:203:1;54439:115:0;;;;;;;;;;-1:-1:-1;54439:115:0;;;;;:::i;:::-;54500:7;54529:15;;;:10;:15;;;;;;;54439:115;5064:87;;;;;;;;;;-1:-1:-1;5137:6:0;;-1:-1:-1;;;;;5137:6:0;5064:87;;63686:30;;;;;;;;;;;;;:::i;62610:99::-;;;;;;;;;;-1:-1:-1;62610:99:0;;;;;:::i;:::-;;:::i;58925:122::-;;;;;;;;;;-1:-1:-1;58925:122:0;;;;;:::i;:::-;58993:7;59020:19;;;:14;:19;;;;;;;58925:122;46893:182;;;;;;;;;;-1:-1:-1;46893:182:0;;;;;:::i;:::-;;:::i;32094:193::-;;;;;;;;;;-1:-1:-1;32094:193:0;;;;;:::i;:::-;;:::i;58631:145::-;;;;;;;;;;-1:-1:-1;58631:145:0;;;;;:::i;:::-;;:::i;60734:121::-;;;;;;;;;;-1:-1:-1;60734:121:0;;;;;:::i;:::-;;:::i;57581:428::-;;;;;;;;;;-1:-1:-1;57581:428:0;;;;;:::i;:::-;;:::i;66019:808::-;;;;;;:::i;:::-;;:::i;63606:33::-;;;;;;;;;;;;;;;;55790:117;;;;;;;;;;-1:-1:-1;55790:117:0;;;;;:::i;:::-;;:::i;49160:119::-;;;;;;;;;;-1:-1:-1;49160:119:0;;;;;:::i;:::-;49223:7;49252:17;;;:12;:17;;;;;;;49160:119;47805:128;;;;;;;;;;-1:-1:-1;47805:128:0;;;;;:::i;:::-;47867:4;47889:28;;;:18;:28;;;;;;;;:36;;:28;:36;;47805:128;55292:357;;;;;;;;;;-1:-1:-1;55292:357:0;;;;;:::i;:::-;;:::i;61014:170::-;;;;;;;;;;-1:-1:-1;61014:170:0;;;;;:::i;:::-;;:::i;46539:215::-;;;;;;;;;;-1:-1:-1;46539:215:0;;;;;:::i;:::-;;:::i;54262:37::-;;;;;;;;;;-1:-1:-1;54262:37:0;;;;;;;;60254:108;;;;;;;;;;-1:-1:-1;60254:108:0;;;;;:::i;:::-;;:::i;71384:149::-;;;;;;;;;;;;;:::i;32359:168::-;;;;;;;;;;-1:-1:-1;32359:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;32482:27:0;;;32458:4;32482:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;32359:168;55659:121;;;;;;;;;;-1:-1:-1;55659:121:0;;;;;:::i;:::-;55718:4;55744:18;;;:13;:18;;;;;;;;:26;;:18;:26;;55659:121;69882:247;;;;;;;;;;-1:-1:-1;69882:247:0;;;;;:::i;:::-;;:::i;54775:230::-;;;;;;;;;;-1:-1:-1;54775:230:0;;;;;:::i;:::-;;:::i;32599:503::-;;;;;;;;;;-1:-1:-1;32599:503:0;;;;;:::i;:::-;;:::i;6043:201::-;;;;;;;;;;-1:-1:-1;6043:201:0;;;;;:::i;:::-;;:::i;58138:44::-;;;;;;;;;;;;;;;;67525:1209;;;;;;;;;;-1:-1:-1;67525:1209:0;;;;;:::i;:::-;;:::i;61379:325::-;;;;;;;;;;-1:-1:-1;61379:325:0;;;;;:::i;:::-;;:::i;60140:106::-;;;;;;;;;;-1:-1:-1;60140:106:0;;;;;:::i;:::-;;:::i;31104:231::-;31190:7;-1:-1:-1;;;;;31218:21:0;;31210:77;;;;-1:-1:-1;;;31210:77:0;;14609:2:1;31210:77:0;;;14591:21:1;14648:2;14628:18;;;14621:30;14687:34;14667:18;;;14660:62;-1:-1:-1;;;14738:18:1;;;14731:41;14789:19;;31210:77:0;;;;;;;;;-1:-1:-1;31305:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;31305:22:0;;;;;;;;;;;;31104:231::o;30133:310::-;30235:4;-1:-1:-1;;;;;;30272:41:0;;-1:-1:-1;;;30272:41:0;;:110;;-1:-1:-1;;;;;;;30330:52:0;;-1:-1:-1;;;30330:52:0;30272:110;:163;;;-1:-1:-1;;;;;;;;;;16574:40:0;;;30399:36;30252:183;30133:310;-1:-1:-1;;30133:310:0:o;63646:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63935:168::-;50572:4;49252:17;;;:12;:17;;;;;;63991:13;;64017:43;;64041:19;;-1:-1:-1;;;64041:19:0;;;;;;;;;;;64017:43;64078:17;;;;:12;:17;;;;;64071:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63935:168;;;:::o;70599:188::-;70663:4;49252:17;;;:12;:17;;;;;;70680:47;;70708:19;;-1:-1:-1;;;70708:19:0;;;;;;;;;;;70680:47;-1:-1:-1;70745:18:0;:27;;;;;;;;;;;;;;;:34;;70599:188::o;49805:224::-;49874:7;49252:17;;;:12;:17;;;;;;49896:43;;49920:19;;-1:-1:-1;;;49920:19:0;;;;;;;;;;;49896:43;49959:18;49973:3;47867:4;47889:28;;;:18;:28;;;;;;;;:36;;:28;:36;;47805:128;49959:18;:60;;50000:19;;;;:14;:19;;;;;;49959:60;;;-1:-1:-1;49980:17:0;;;;:12;:17;;;;;;;49805:224::o;69231:190::-;47428:18;:16;:18::i;:::-;50572:4;49252:17;;;:12;:17;;;;;;69327:43:::1;;69351:19;;-1:-1:-1::0;;;69351:19:0::1;;;;;;;;;;;69327:43;69381:17;::::0;;;:12:::1;:17;::::0;;;;;;;:32;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;69231:190:::0;;:::o;56533:36::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56533:36:0;:::o;33179:617::-;33399:4;26357:42;27842:43;:47;27838:416;;-1:-1:-1;;;;;28121:18:0;;28129:10;28121:18;28117:85;;;33421:9:::1;33416:137;33440:3;:10;33436:1;:14;33416:137;;;33480:18;:26:::0;33499:3:::1;33503:1;33499:6;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;33480:26;;;::::1;::::0;;;;;;-1:-1:-1;33480:26:0;;::::1;::::0;;::::1;:33;33472:69;;;;-1:-1:-1::0;;;33472:69:0::1;;;;;;;:::i;:::-;33452:3;::::0;::::1;:::i;:::-;;;33416:137;;;-1:-1:-1::0;;;;;;33587:20:0;::::1;1560:10:::0;33587:20:::1;::::0;:60:::1;;-1:-1:-1::0;33611:36:0::1;33628:4:::0;1560:10;32359:168;:::i;33611:36::-:1;33565:160;;;;-1:-1:-1::0;;;33565:160:0::1;;;;;;;:::i;:::-;33736:52;33759:4;33765:2;33769:3;33774:7;33783:4;33736:22;:52::i;:::-;28180:7:::0;;28117:85;28216:26;28237:4;28216:20;:26::i;:::-;33421:9:::1;33416:137;33440:3;:10;33436:1;:14;33416:137;;;33480:18;:26:::0;33499:3:::1;33503:1;33499:6;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;33480:26;;;::::1;::::0;;;;;;-1:-1:-1;33480:26:0;;::::1;::::0;;::::1;:33;33472:69;;;;-1:-1:-1::0;;;33472:69:0::1;;;;;;;:::i;:::-;33452:3;::::0;::::1;:::i;:::-;;;33416:137;;;-1:-1:-1::0;;;;;;33587:20:0;::::1;1560:10:::0;33587:20:::1;::::0;:60:::1;;-1:-1:-1::0;33611:36:0::1;33628:4:::0;1560:10;32359:168;:::i;33611:36::-:1;33565:160;;;;-1:-1:-1::0;;;33565:160:0::1;;;;;;;:::i;:::-;33736:52;33759:4;33765:2;33769:3;33774:7;33783:4;33736:22;:52::i;:::-;33179:617:::0;;;;;;:::o;50041:366::-;47428:18;:16;:18::i;:::-;50572:4;49252:17;;;:12;:17;;;;;;50140:43:::1;;50164:19;;-1:-1:-1::0;;;50164:19:0::1;;;;;;;;;;;50140:43;50199:18;50213:3;47867:4:::0;47889:28;;;:18;:28;;;;;;;;:36;;:28;:36;;47805:128;50199:18:::1;50196:60;;;50226:30;;-1:-1:-1::0;;;50226:30:0::1;;;;;;;;;;;50196:60;50291:19;::::0;;;:14:::1;:19;::::0;;;;;50274:36;::::1;50271:77;;50319:29;;-1:-1:-1::0;;;50319:29:0::1;;;;;;;;;;;50271:77;50362:19;::::0;;;:14:::1;:19;::::0;;;;;:35;50041:366::o;64155:311::-;47428:18;:16;:18::i;:::-;50572:4;49252:17;;;:12;:17;;;;;;64253:43:::1;;64277:19;;-1:-1:-1::0;;;64277:19:0::1;;;;;;;;;;;64253:43;64308:9:::0;64305:39:::1;;64326:18;;-1:-1:-1::0;;;64326:18:0::1;;;;;;;;;;;64305:39;64357:26;64373:3;64378:4;64357:15;:26::i;:::-;64353:52;;64392:13;;-1:-1:-1::0;;;64392:13:0::1;;;;;;;;;;;64353:52;64422:38;64428:8;64438:3;64443:4;64449:10;64422:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:38::i;59055:209::-:0;47428:18;:16;:18::i;:::-;59165:20;59162:46:::1;;59194:14;;-1:-1:-1::0;;;59194:14:0::1;;;;;;;;;;;59162:46;59219:19;::::0;;;:14:::1;:19;::::0;;;;;:37;59055:209::o;68969:71::-;47428:18;:16;:18::i;:::-;69022:10:::1;:8;:10::i;:::-;68969:71::o:0;46186:210::-;5406:12;:10;:12::i;:::-;-1:-1:-1;;;;;46250:22:0;::::1;46247:54;;46281:20;;-1:-1:-1::0;;;46281:20:0::1;;;;;;;;;;;46247:54;46311:16;46318:8;46311:6;:16::i;:::-;46308:50;;;46336:22;;-1:-1:-1::0;;;46336:22:0::1;;;;;;;;;;;46308:50;-1:-1:-1::0;;;;;46369:14:0::1;;::::0;;;:4:::1;:14;::::0;;;;:21;;-1:-1:-1;;46369:21:0::1;46386:4;46369:21;::::0;;46186:210::o;70251:249::-;47428:18;:16;:18::i;:::-;50572:4;49252:17;;;:12;:17;;;;;;70329:47:::1;;70357:19;;-1:-1:-1::0;;;70357:19:0::1;;;;;;;;;;;70329:47;70390:18;:27:::0;;;::::1;::::0;;;;;;;::::1;::::0;;::::1;:34;70387:61;;;70433:15;;-1:-1:-1::0;;;70433:15:0::1;;;;;;;;;;;70387:61;70459:18;:27:::0;;;::::1;::::0;;;;;;:33;;-1:-1:-1;;70459:33:0::1;70489:3;70459:33;::::0;;70251:249::o;31497:524::-;31653:16;31714:3;:10;31695:8;:15;:29;31687:83;;;;-1:-1:-1;;;31687:83:0;;16581:2:1;31687:83:0;;;16563:21:1;16620:2;16600:18;;;16593:30;16659:34;16639:18;;;16632:62;-1:-1:-1;;;16710:18:1;;;16703:39;16759:19;;31687:83:0;16379:405:1;31687:83:0;31783:30;31830:8;:15;-1:-1:-1;;;;;31816:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31816:30:0;;31783:63;;31864:9;31859:122;31883:8;:15;31879:1;:19;31859:122;;;31939:30;31949:8;31958:1;31949:11;;;;;;;;:::i;:::-;;;;;;;31962:3;31966:1;31962:6;;;;;;;;:::i;:::-;;;;;;;31939:9;:30::i;:::-;31920:13;31934:1;31920:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;31900:3;;;:::i;:::-;;;31859:122;;;-1:-1:-1;32000:13:0;31497:524;-1:-1:-1;;;31497:524:0:o;69569:192::-;69635:7;69658:9;69655:35;;69676:14;;-1:-1:-1;;;69676:14:0;;;;;;;;;;;69655:35;69741:12;;58337:7;58364:15;;;:10;:15;;;;;;69709:28;;69733:4;;69709:28;:::i;:::-;69708:45;;;;:::i;:::-;69701:52;69569:192;-1:-1:-1;;;69569:192:0:o;62717:101::-;47428:18;:16;:18::i;:::-;62805:5:::1;62786:16:::0;;;:11:::1;:16;::::0;;;;:24;;-1:-1:-1;;62786:24:0::1;::::0;;62717:101::o;55917:119::-;47428:18;:16;:18::i;:::-;56021:5:::1;56000:18:::0;;;:13:::1;:18;::::0;;;;:26;;-1:-1:-1;;56000:26:0::1;::::0;;55917:119::o;64972:705::-;2889:7;;;;3143:9;3135:38;;;;-1:-1:-1;;;3135:38:0;;;;;;;:::i;:::-;50572:4;49252:17;;;:12;:17;;;;;;65074:43:::1;;65098:19;;-1:-1:-1::0;;;65098:19:0::1;;;;;;;;;;;65074:43;65129:9:::0;65126:39:::1;;65147:18;;-1:-1:-1::0;;;65147:18:0::1;;;;;;;;;;;65126:39;59355:4:::0;59387:19;;;:14;:19;;;;;;-1:-1:-1;;59379:27:0;65174:74:::1;;65222:26;;-1:-1:-1::0;;;65222:26:0::1;;;;;;;;;;;65174:74;65261:26;65277:3;65282:4;65261:15;:26::i;:::-;65257:52;;65296:13;;-1:-1:-1::0;;;65296:13:0::1;;;;;;;;;;;65257:52;65334:19;65343:3;65348:4;65334:8;:19::i;:::-;65321:9;:32;65318:60;;65362:16;;-1:-1:-1::0;;;65362:16:0::1;;;;;;;;;;;65318:60;65392:20;65408:3;55718:4:::0;55744:18;;;:13;:18;;;;;;;;:26;;:18;:26;;55659:121;65392:20:::1;65389:50;;;65421:18;;-1:-1:-1::0;;;65421:18:0::1;;;;;;;;;;;65389:50;65452:18;65466:3;62882:4:::0;62906:16;;;:11;:16;;;;;;;;:24;;:16;:24;;62826:112;65452:18:::1;65448:49;;65479:18;;-1:-1:-1::0;;;65479:18:0::1;;;;;;;;;;;65448:49;65510:29;65524:3;65529;65534:4;65510:13;:29::i;:::-;65506:57;;65548:15;;-1:-1:-1::0;;;65548:15:0::1;;;;;;;;;;;65506:57;65574:17;:15;:17::i;:::-;65600:29;65614:3;65619;65624:4;65600:13;:29::i;64472:236::-:0;47428:18;:16;:18::i;:::-;64592:9:::1;64588:115;64609:9;:16;64605:1;:20;64588:115;;;64645:48;64651:9;64661:1;64651:12;;;;;;;;:::i;:::-;;;;;;;64665:3;64670:10;64682;64645:48;;;;;:::i;:::-;64627:3:::0;::::1;::::0;::::1;:::i;:::-;;;;64588:115;;;;64472:236:::0;;;:::o;5787:103::-;5406:12;:10;:12::i;:::-;5852:30:::1;5879:1;5852:18;:30::i;58395:127::-:0;47428:18;:16;:18::i;:::-;58487:15:::1;::::0;;;:10:::1;:15;::::0;;;;;:27;58395:127::o;68817:67::-;47428:18;:16;:18::i;:::-;68868:8:::1;:6;:8::i;56619:118::-:0;47428:18;:16;:18::i;:::-;56706:1:::1;56682:21;:25;56674:34;;;::::0;::::1;;56717:14;:12;:14::i;48140:152::-:0;47428:18;:16;:18::i;:::-;48239:28:::1;::::0;;;:18:::1;:28;::::0;;;;;:45;;-1:-1:-1;;48239:45:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48140:152::o;56448:80::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56448:80:0;;-1:-1:-1;56448:80:0;:::o;63686:30::-;;;;;;;:::i;62610:99::-;47428:18;:16;:18::i;:::-;62678:16:::1;::::0;;;:11:::1;:16;::::0;;;;:23;;-1:-1:-1;;62678:23:0::1;62697:4;62678:23;::::0;;62610:99::o;46893:182::-;46963:4;-1:-1:-1;;;;;46982:22:0;;46979:54;;47013:20;;-1:-1:-1;;;47013:20:0;;;;;;;;;;;46979:54;-1:-1:-1;;;;;;47047:14:0;;;;;:4;:14;;;;;;;;:22;;:14;:22;;46893:182::o;32094:193::-;32206:8;28355:30;28376:8;28355:20;:30::i;:::-;32227:52:::1;1560:10:::0;32260:8:::1;32270;32227:18;:52::i;58631:145::-:0;1560:10;58227:42;58690:24;58687:51;;58723:15;;-1:-1:-1;;;58723:15:0;;;;;;;;;;;58687:51;58749:12;:19;58631:145::o;60734:121::-;47428:18;:16;:18::i;:::-;-1:-1:-1;;;;;60817:21:0::1;60846:1;60817:21:::0;;;:11:::1;:21;::::0;;;;;;;:26;;;;;;;;;:30;60734:121::o;57581:428::-;47428:18;:16;:18::i;:::-;57696:1:::1;57686:7;:11;57678:20;;;::::0;::::1;;57765:38;::::0;-1:-1:-1;;;57765:38:0;;57797:4:::1;57765:38;::::0;::::1;9638:51:1::0;57735:14:0;;57807:7;;-1:-1:-1;;;;;57765:23:0;::::1;::::0;::::1;::::0;9611:18:1;;57765:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;57757:97;;;::::0;-1:-1:-1;;;57757:97:0;;17831:2:1;57757:97:0::1;::::0;::::1;17813:21:1::0;17870:2;17850:18;;;17843:30;17909:34;17889:18;;;17882:62;-1:-1:-1;;;17960:18:1;;;17953:33;18003:19;;57757:97:0::1;17629:399:1::0;57757:97:0::1;57867:6;57863:141;57881:19;;57877:1;:23;57863:141;;;57919:13;-1:-1:-1::0;;;;;57919:22:0::1;;57942:16;57959:1;57942:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;57942:19:0::1;57992:3;57974:11;57986:1;57974:14;;;;;;;;:::i;:::-;;;;;;;;;57964:7;:24;;;;:::i;:::-;57963:32;;;;:::i;:::-;57919:77;::::0;-1:-1:-1;;;;;;57919:77:0::1;::::0;;;;;;-1:-1:-1;;;;;18447:32:1;;;57919:77:0::1;::::0;::::1;18429:51:1::0;18496:18;;;18489:34;18402:18;;57919:77:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;57902:3:0;::::1;::::0;::::1;:::i;:::-;;;;57863:141;;66019:808:::0;2889:7;;;;3143:9;3135:38;;;;-1:-1:-1;;;3135:38:0;;;;;;;:::i;:::-;50572:4;49252:17;;;:12;:17;;;;;;66158:43:::1;;66182:19;;-1:-1:-1::0;;;66182:19:0::1;;;;;;;;;;;66158:43;66215:9:::0;66212:39:::1;;66233:18;;-1:-1:-1::0;;;66233:18:0::1;;;;;;;;;;;66212:39;59355:4:::0;59387:19;;;:14;:19;;;;;;-1:-1:-1;;59379:27:0;66262:74:::1;;66310:26;;-1:-1:-1::0;;;66310:26:0::1;;;;;;;;;;;66262:74;66351:26;66367:3;66372:4;66351:15;:26::i;:::-;66347:52;;66386:13;;-1:-1:-1::0;;;66386:13:0::1;;;;;;;;;;;66347:52;66426:19;66435:3;66440:4;66426:8;:19::i;:::-;66413:9;:32;66410:60;;66454:16;;-1:-1:-1::0;;;66454:16:0::1;;;;;;;;;;;66410:60;66487:20;66503:3;55718:4:::0;55744:18;;;:13;:18;;;;;;;;:26;;:18;:26;;55659:121;66487:20:::1;66486:21;:44;;;;66512:18;66526:3;62882:4:::0;62906:16;;;:11;:16;;;;;;;;:24;;:16;:24;;62826:112;66512:18:::1;66511:19;66486:44;66483:77;;;66539:21;;-1:-1:-1::0;;;66539:21:0::1;;;;;;;;;;;66483:77;66575:37;66589:3;66594;66599:12;;66575:13;:37::i;:::-;66571:66;;66621:16;;-1:-1:-1::0;;;66621:16:0::1;;;;;;;;;;;66571:66;66652:29;66666:3;66671;66676:4;66652:13;:29::i;:::-;66648:57;;66690:15;;-1:-1:-1::0;;;66690:15:0::1;;;;;;;;;;;66648:57;66718:17;:15;:17::i;:::-;66746:29;66760:3;66765;66770:4;66746:13;:29::i;:::-;66786:33;66792:3;66797;66802:4;66808:10;66786:33;;;;;:::i;:::-;66019:808:::0;;;;;:::o;55790:117::-;47428:18;:16;:18::i;:::-;55872::::1;::::0;;;:13:::1;:18;::::0;;;;:25;;-1:-1:-1;;55872:25:0::1;55893:4;55872:25;::::0;;55790:117::o;55292:357::-;55404:4;54529:15;;;:10;:15;;;;;;55423:69;;;;-1:-1:-1;;;55423:69:0;;18986:2:1;55423:69:0;;;18968:21:1;19025:2;19005:18;;;18998:30;19064:25;19044:18;;;19037:53;19107:18;;55423:69:0;18784:347:1;55423:69:0;55530:26;;-1:-1:-1;;19285:2:1;19281:15;;;19277:53;55530:26:0;;;19265:66:1;55505:12:0;;19347::1;;55530:26:0;;;;;;;;;;;;55520:37;;;;;;55505:52;;55579:60;55598:12;;55579:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55612:20:0;;;:10;:20;;;;;;;-1:-1:-1;55634:4:0;;-1:-1:-1;55579:18:0;;-1:-1:-1;55579:60:0:i;:::-;55572:67;55292:357;-1:-1:-1;;;;;;55292:357:0:o;61014:170::-;47428:18;:16;:18::i;:::-;61106:12;61103:38:::1;;61127:14;;-1:-1:-1::0;;;61127:14:0::1;;;;;;;;;;;61103:38;61150:16;::::0;;;:11:::1;:16;::::0;;;;;:26;61014:170::o;46539:215::-;5406:12;:10;:12::i;:::-;-1:-1:-1;;;;;46608:22:0;::::1;46605:54;;46639:20;;-1:-1:-1::0;;;46639:20:0::1;;;;;;;;;;;46605:54;46670:16;46677:8;46670:6;:16::i;:::-;46666:49;;46695:20;;-1:-1:-1::0;;;46695:20:0::1;;;;;;;;;;;46666:49;-1:-1:-1::0;;;;;46726:14:0::1;46743:5;46726:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;46726:22:0::1;::::0;;46539:215::o;60254:108::-;47428:18;:16;:18::i;:::-;60349:5:::1;60325:21:::0;;;:16:::1;:21;::::0;;;;:29;;-1:-1:-1;;60325:29:0::1;::::0;;60254:108::o;71384:149::-;71428:13;71450:77;;;;;;;;;;;;;;;;;;;71384:149;:::o;69882:247::-;47428:18;:16;:18::i;:::-;50572:4;49252:17;;;:12;:17;;;;;;69962:47:::1;;69990:19;;-1:-1:-1::0;;;69990:19:0::1;;;;;;;;;;;69962:47;70023:18;:27:::0;;;::::1;::::0;;;;;;;::::1;;::::0;:32:::1;70020:59;;;70064:15;;-1:-1:-1::0;;;70064:15:0::1;;;;;;;;;;;70020:59;70090:18;:27:::0;;;::::1;::::0;;;;;;:31;;-1:-1:-1;;70090:31:0::1;70120:1;70090:31;::::0;;69882:247::o;54775:230::-;47428:18;:16;:18::i;:::-;54900:15:::1;::::0;;;:10:::1;:15;::::0;;;;;54882:33;::::1;;54874:76;;;::::0;-1:-1:-1;;;54874:76:0;;19572:2:1;54874:76:0::1;::::0;::::1;19554:21:1::0;19611:2;19591:18;;;19584:30;19650:32;19630:18;;;19623:60;19700:18;;54874:76:0::1;19370:354:1::0;54874:76:0::1;54963:15;::::0;;;:10:::1;:15;::::0;;;;;:32;54775:230::o;32599:503::-;32794:4;26357:42;27842:43;:47;27838:416;;-1:-1:-1;;;;;28121:18:0;;28129:10;28121:18;28117:85;;;32819:18:::1;:22:::0;;;::::1;::::0;;;;;;;::::1;::::0;;::::1;:29;32811:65;;;;-1:-1:-1::0;;;32811:65:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32909:20:0;::::1;1560:10:::0;32909:20:::1;::::0;:60:::1;;-1:-1:-1::0;32933:36:0::1;32950:4:::0;1560:10;32359:168;:::i;32933:36::-:1;32887:151;;;;-1:-1:-1::0;;;32887:151:0::1;;;;;;;:::i;:::-;33049:45;33067:4;33073:2;33077;33081:6;33089:4;33049:17;:45::i;28117:85::-:0;28216:26;28237:4;28216:20;:26::i;:::-;32819:18:::1;:22:::0;;;::::1;::::0;;;;;;;::::1;::::0;;::::1;:29;32811:65;;;;-1:-1:-1::0;;;32811:65:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32909:20:0;::::1;1560:10:::0;32909:20:::1;::::0;:60:::1;;-1:-1:-1::0;32933:36:0::1;32950:4:::0;1560:10;32359:168;:::i;32933:36::-:1;32887:151;;;;-1:-1:-1::0;;;32887:151:0::1;;;;;;;:::i;:::-;33049:45;33067:4;33073:2;33077;33081:6;33089:4;33049:17;:45::i;6043:201::-:0;5406:12;:10;:12::i;:::-;-1:-1:-1;;;;;6132:22:0;::::1;6124:73;;;::::0;-1:-1:-1;;;6124:73:0;;20341:2:1;6124:73:0::1;::::0;::::1;20323:21:1::0;20380:2;20360:18;;;20353:30;20419:34;20399:18;;;20392:62;-1:-1:-1;;;20470:18:1;;;20463:36;20516:19;;6124:73:0::1;20139:402:1::0;6124:73:0::1;6208:28;6227:8;6208:18;:28::i;:::-;6043:201:::0;:::o;67525:1209::-;47428:18;:16;:18::i;:::-;67941:20;67938:46:::1;;67970:14;;-1:-1:-1::0;;;67970:14:0::1;;;;;;;;;;;67938:46;67998:25:::0;67995:51:::1;;68032:14;;-1:-1:-1::0;;;68032:14:0::1;;;;;;;;;;;67995:51;68060:23:::0;;68057:54:::1;;68097:14;;-1:-1:-1::0;;;68097:14:0::1;;;;;;;;;;;68057:54;68124:15;68142:17;:15;:17::i;:::-;68124:35;;68172:41;68178:10;68190:7;68199:1;68202:10;68172:41;;;;;:::i;:::-;68224:21;::::0;;;:12:::1;:21;::::0;;;;;;;:33;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;68270:43;68288:7;68297:15;68270:17;:43::i;:::-;68324:41;68341:7;68350:14;68324:16;:41::i;:::-;68376:56;68402:7;68411:20;68376:25;:56::i;:::-;63030:16:::0;;;;:11;:16;;;;;:30;;-1:-1:-1;;63030:30:0;;;;;;;60038:21;;;;:16;:21;;;;;;;;:44;;-1:-1:-1;;60038:44:0;;;;;;;60091:11;:16;;;;;:33;;;68600:26:::1;:36;;68635:1;68600:36;;;68629:3;68600:36;68570:18;:27:::0;;;::::1;::::0;;;;;;:66;;-1:-1:-1;;68570:66:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;68647:43:::1;68570:27:::0;68675:14;68647:18:::1;:43::i;:::-;68703:23;:21;:23::i;:::-;67927:807;67525:1209:::0;;;;;;;;;:::o;61379:325::-;61470:4;62128:21;;;:16;:21;;;;;;;;:29;;:21;:29;61487:73;;-1:-1:-1;61544:4:0;61537:11;;61487:73;61577:12;61574:38;;61598:14;;-1:-1:-1;;;61598:14:0;;;;;;;;;;;61574:38;61875:7;61900:16;;;:11;:16;;;;;;;;;-1:-1:-1;;;;;62449:21:0;;;;:11;:21;;;;;:26;;;;;;;;;;61631:41;;61665:7;;61631:41;:::i;:::-;61630:66;;;61379:325;-1:-1:-1;;;;61379:325:0:o;60140:106::-;47428:18;:16;:18::i;:::-;60210:21:::1;::::0;;;:16:::1;:21;::::0;;;;:28;;-1:-1:-1;;60210:28:0::1;60234:4;60210:28;::::0;;60140:106::o;47173:215::-;5137:6;;-1:-1:-1;;;;;5137:6:0;1560:10;47237:23;;;;47221:13;;47282:20;;46893:182;:::i;47282:20::-;47267:35;;47317:8;:19;;;;47329:7;47317:19;47309:73;;;;-1:-1:-1;;;47309:73:0;;20748:2:1;47309:73:0;;;20730:21:1;20787:2;20767:18;;;20760:30;20826:34;20806:18;;;20799:62;-1:-1:-1;;;20877:18:1;;;20870:39;20926:19;;47309:73:0;20546:405:1;47309:73:0;47214:174;;47173:215::o;35418:1074::-;35645:7;:14;35631:3;:10;:28;35623:81;;;;-1:-1:-1;;;35623:81:0;;21158:2:1;35623:81:0;;;21140:21:1;21197:2;21177:18;;;21170:30;21236:34;21216:18;;;21209:62;-1:-1:-1;;;21287:18:1;;;21280:38;21335:19;;35623:81:0;20956:404:1;35623:81:0;-1:-1:-1;;;;;35723:16:0;;35715:66;;;;-1:-1:-1;;;35715:66:0;;;;;;;:::i;:::-;1560:10;35838:60;1560:10;35869:4;35875:2;35879:3;35884:7;35893:4;35838:20;:60::i;:::-;35916:9;35911:421;35935:3;:10;35931:1;:14;35911:421;;;35967:10;35980:3;35984:1;35980:6;;;;;;;;:::i;:::-;;;;;;;35967:19;;36001:14;36018:7;36026:1;36018:10;;;;;;;;:::i;:::-;;;;;;;;;;;;36045:19;36067:13;;;:9;:13;;;;;;-1:-1:-1;;;;;36067:19:0;;;;;;;;;;;;36018:10;;-1:-1:-1;36109:21:0;;;;36101:76;;;;-1:-1:-1;;;36101:76:0;;;;;;;:::i;:::-;36221:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;36221:19:0;;;;;;;;;;36243:20;;;36221:42;;36293:17;;;;;;;:27;;36243:20;;36221:13;36293:27;;36243:20;;36293:27;:::i;:::-;;;;;;;;35952:380;;;35947:3;;;;:::i;:::-;;;35911:421;;;;36379:2;-1:-1:-1;;;;;36349:47:0;36373:4;-1:-1:-1;;;;;36349:47:0;36363:8;-1:-1:-1;;;;;36349:47:0;;36383:3;36388:7;36349:47;;;;;;;:::i;:::-;;;;;;;;36409:75;36445:8;36455:4;36461:2;36465:3;36470:7;36479:4;36409:35;:75::i;27325:337::-;27425:67;;-1:-1:-1;;;27425:67:0;;27474:4;27425:67;;;22864:34:1;27481:10:0;22914:18:1;;;22907:43;26357:42:0;;27425:40;;22799:18:1;;27425:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:147;;;;-1:-1:-1;27511:61:0;;-1:-1:-1;;;27511:61:0;;27560:4;27511:61;;;22864:34:1;-1:-1:-1;;;;;22934:15:1;;22914:18;;;22907:43;26357:42:0;;27511:40;;22799:18:1;;27511:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27391:264;;27615:30;;-1:-1:-1;;;27615:30:0;;27634:10;27615:30;;;9638:51:1;9611:18;;27615:30:0;9492:203:1;49592:201:0;49672:4;47889:28;;;:18;:28;;;;;;;;:36;;:28;:36;49696:87;;49760:22;49778:3;49760:17;:22::i;:::-;49223:7;49252:17;;;:12;:17;;;;;;49726:29;;49745:10;;49726:29;:::i;:::-;49725:57;;49696:87;;;-1:-1:-1;49717:4:0;;49592:201;-1:-1:-1;;49592:201:0:o;37790:569::-;-1:-1:-1;;;;;37943:16:0;;37935:62;;;;-1:-1:-1;;;37935:62:0;;23163:2:1;37935:62:0;;;23145:21:1;23202:2;23182:18;;;23175:30;23241:34;23221:18;;;23214:62;-1:-1:-1;;;23292:18:1;;;23285:31;23333:19;;37935:62:0;22961:397:1;37935:62:0;1560:10;38054:102;1560:10;38010:16;38097:2;38101:21;38119:2;38101:17;:21::i;:::-;38124:25;38142:6;38124:17;:25::i;:::-;38151:4;38054:20;:102::i;:::-;38169:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;38169:17:0;;;;;;;;;:27;;38190:6;;38169:13;:27;;38190:6;;38169:27;:::i;:::-;;;;-1:-1:-1;;38212:52:0;;;23537:25:1;;;23593:2;23578:18;;23571:34;;;-1:-1:-1;;;;;38212:52:0;;;;38245:1;;38212:52;;;;;;23510:18:1;38212:52:0;;;;;;;38277:74;38308:8;38326:1;38330:2;38334;38338:6;38346:4;38277:30;:74::i;3877:120::-;2889:7;;;;3413:41;;;;-1:-1:-1;;;3413:41:0;;23818:2:1;3413:41:0;;;23800:21:1;23857:2;23837:18;;;23830:30;-1:-1:-1;;;23876:18:1;;;23869:50;23936:18;;3413:41:0;23616:344:1;3413:41:0;3936:7:::1;:15:::0;;-1:-1:-1;;3936:15:0::1;::::0;;3967:22:::1;1560:10:::0;3976:12:::1;3967:22;::::0;-1:-1:-1;;;;;9656:32:1;;;9638:51;;9626:2;9611:18;3967:22:0::1;;;;;;;3877:120::o:0;5244:122::-;5137:6;;-1:-1:-1;;;;;5137:6:0;1560:10;5298:23;5290:68;;;;-1:-1:-1;;;5290:68:0;;24167:2:1;5290:68:0;;;24149:21:1;;;24186:18;;;24179:30;24245:34;24225:18;;;24218:62;24297:18;;5290:68:0;23965:356:1;58530:93:0;58602:12;;58575:40;;58227:42;;58575:40;;;;;;;;;58602:12;58227:42;58575:40;;;;;;;;;;;;;;;;;;;60370:165;-1:-1:-1;;;;;60489:21:0;;;;;;:11;:21;;;;;;;;:26;;;;;;;;;:37;;60519:7;;60489:37;:::i;:::-;-1:-1:-1;;;;;60459:21:0;;;;;;;:11;:21;;;;;;;;:26;;;;;;;;;;:68;-1:-1:-1;60370:165:0:o;6402:191::-;6495:6;;;-1:-1:-1;;;;;6512:17:0;;;-1:-1:-1;;;;;;6512:17:0;;;;;;;6545:40;;6495:6;;;6512:17;6495:6;;6545:40;;6476:16;;6545:40;6465:128;6402:191;:::o;3618:118::-;2889:7;;;;3143:9;3135:38;;;;-1:-1:-1;;;3135:38:0;;;;;;;:::i;:::-;3678:7:::1;:14:::0;;-1:-1:-1;;3678:14:0::1;3688:4;3678:14;::::0;;3708:20:::1;3715:12;1560:10:::0;;1480:98;56745:278;56804:21;56786:15;56842:176;56860:19;;56856:1;:23;56842:176;;;56900:108;56927:16;56944:1;56927:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56927:19:0;56992:3;56974:11;56986:1;56974:14;;;;;;;;:::i;:::-;;;;;;;;;56964:7;:24;;;;:::i;:::-;56963:32;;;;:::i;:::-;56900:10;:108::i;:::-;56881:3;;;;:::i;:::-;;;;56842:176;;28413:415;26357:42;28604:43;:47;28600:221;;28673:65;;-1:-1:-1;;;28673:65:0;;28722:4;28673:65;;;22864:34:1;-1:-1:-1;;;;;22934:15:1;;22914:18;;;22907:43;26357:42:0;;28673:40;;22799:18:1;;28673:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28668:142;;28766:28;;-1:-1:-1;;;28766:28:0;;-1:-1:-1;;;;;9656:32:1;;28766:28:0;;;9638:51:1;9611:18;;28766:28:0;9492:203:1;41556:331:0;41711:8;-1:-1:-1;;;;;41702:17:0;:5;-1:-1:-1;;;;;41702:17:0;;;41694:71;;;;-1:-1:-1;;;41694:71:0;;24528:2:1;41694:71:0;;;24510:21:1;24567:2;24547:18;;;24540:30;24606:34;24586:18;;;24579:62;-1:-1:-1;;;24657:18:1;;;24650:39;24706:19;;41694:71:0;24326:405:1;41694:71:0;-1:-1:-1;;;;;41776:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41776:46:0;;;;;;;;;;41838:41;;1159::1;;;41838::0;;1132:18:1;41838:41:0;;;;;;;41556:331;;;:::o;52511:202::-;52644:4;52699;52670:25;52683:5;52690:4;52670:12;:25::i;:::-;:33;;52511:202;-1:-1:-1;;;;52511:202:0:o;34242:820::-;-1:-1:-1;;;;;34430:16:0;;34422:66;;;;-1:-1:-1;;;34422:66:0;;;;;;;:::i;:::-;1560:10;34545:96;1560:10;34576:4;34582:2;34586:21;34604:2;34586:17;:21::i;34545:96::-;34654:19;34676:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;34676:19:0;;;;;;;;;;34714:21;;;;34706:76;;;;-1:-1:-1;;;34706:76:0;;;;;;;:::i;:::-;34818:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;34818:19:0;;;;;;;;;;34840:20;;;34818:42;;34882:17;;;;;;;:27;;34840:20;;34818:13;34882:27;;34840:20;;34882:27;:::i;:::-;;;;-1:-1:-1;;34927:46:0;;;23537:25:1;;;23593:2;23578:18;;23571:34;;;-1:-1:-1;;;;;34927:46:0;;;;;;;;;;;;;;23510:18:1;34927:46:0;;;;;;;34986:68;35017:8;35027:4;35033:2;35037;35041:6;35049:4;34986:30;:68::i;:::-;34411:651;;34242:820;;;;;:::o;71117:102::-;71166:7;71193:14;;71210:1;71193:18;;;;:::i;:::-;71186:25;;71117:102;:::o;71295:77::-;71348:14;:16;;;:14;:16;;;:::i;:::-;;;;;;71295:77::o;70795:314::-;2889:7;;;;3143:9;3135:38;;;;-1:-1:-1;;;3135:38:0;;;;;;;:::i;:::-;71035:66:::1;71062:8;71072:4;71078:2;71082:3;71087:7;71096:4;71035:26;:66::i;43776:813::-:0;-1:-1:-1;;;;;44016:13:0;;7739:20;7787:8;44012:570;;44052:79;;-1:-1:-1;;;44052:79:0;;-1:-1:-1;;;;;44052:43:0;;;;;:79;;44096:8;;44106:4;;44112:3;;44117:7;;44126:4;;44052:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44052:79:0;;;;;;;;-1:-1:-1;;44052:79:0;;;;;;;;;;;;:::i;:::-;;;44048:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;44444:6;44437:14;;-1:-1:-1;;;44437:14:0;;;;;;;;:::i;44048:523::-;;;44493:62;;-1:-1:-1;;;44493:62:0;;26884:2:1;44493:62:0;;;26866:21:1;26923:2;26903:18;;;26896:30;26962:34;26942:18;;;26935:62;-1:-1:-1;;;27013:18:1;;;27006:50;27073:19;;44493:62:0;26682:416:1;44048:523:0;-1:-1:-1;;;;;;44213:60:0;;-1:-1:-1;;;44213:60:0;44209:159;;44298:50;;-1:-1:-1;;;44298:50:0;;;;;;;:::i;44597:198::-;44717:16;;;44731:1;44717:16;;;;;;;;;44663;;44692:22;;44717:16;;;;;;;;;;;;-1:-1:-1;44717:16:0;44692:41;;44755:7;44744:5;44750:1;44744:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;44782:5;44597:198;-1:-1:-1;;44597:198:0:o;43024:744::-;-1:-1:-1;;;;;43239:13:0;;7739:20;7787:8;43235:526;;43275:72;;-1:-1:-1;;;43275:72:0;;-1:-1:-1;;;;;43275:38:0;;;;;:72;;43314:8;;43324:4;;43330:2;;43334:6;;43342:4;;43275:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43275:72:0;;;;;;;;-1:-1:-1;;43275:72:0;;;;;;;;;;;;:::i;:::-;;;43271:479;;;;:::i;:::-;-1:-1:-1;;;;;;43397:55:0;;-1:-1:-1;;;43397:55:0;43393:154;;43477:50;;-1:-1:-1;;;43477:50:0;;;;;;;:::i;57031:175::-;57104:12;57122:8;-1:-1:-1;;;;;57122:13:0;57143:7;57122:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57103:52;;;57172:7;57164:36;;;;-1:-1:-1;;;57164:36:0;;28490:2:1;57164:36:0;;;28472:21:1;28529:2;28509:18;;;28502:30;-1:-1:-1;;;28548:18:1;;;28541:46;28604:18;;57164:36:0;28288:340:1;53087:701:0;53170:7;53215:4;53170:7;53232:515;53256:5;:12;53252:1;:16;53232:515;;;53292:20;53315:5;53321:1;53315:8;;;;;;;;:::i;:::-;;;;;;;53292:31;;53360:12;53344;:28;53340:394;;53868:13;53922:15;;;53960:4;53953:15;;;54009:4;53993:21;;53476:57;;53340:394;;;53868:13;53922:15;;;53960:4;53953:15;;;54009:4;53993:21;;53659:57;;53340:394;-1:-1:-1;53270:3:0;;;;:::i;:::-;;;;53232:515;;50726:697;-1:-1:-1;;;;;51068:18:0;;51064:168;;51110:9;51105:114;51129:3;:10;51125:1;:14;51105:114;;;51191:7;51199:1;51191:10;;;;;;;;:::i;:::-;;;;;;;51167:12;:20;51180:3;51184:1;51180:6;;;;;;;;:::i;:::-;;;;;;;51167:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;51141:3:0;;-1:-1:-1;51141:3:0;;:::i;:::-;;;51105:114;;;;51064:168;-1:-1:-1;;;;;51252:16:0;;51248:166;;51292:9;51287:114;51311:3;:10;51307:1;:14;51287:114;;;51373:7;51381:1;51373:10;;;;;;;;:::i;:::-;;;;;;;51349:12;:20;51362:3;51366:1;51362:6;;;;;;;;:::i;:::-;;;;;;;51349:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;51323:3:0;;-1:-1:-1;51323:3:0;;:::i;:::-;;;51287:114;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;1211:472::-;1253:3;1291:5;1285:12;1318:6;1313:3;1306:19;1343:1;1353:162;1367:6;1364:1;1361:13;1353:162;;;1429:4;1485:13;;;1481:22;;1475:29;1457:11;;;1453:20;;1446:59;1382:12;1353:162;;;1533:6;1530:1;1527:13;1524:87;;;1599:1;1592:4;1583:6;1578:3;1574:16;1570:27;1563:38;1524:87;-1:-1:-1;1665:2:1;1644:15;-1:-1:-1;;1640:29:1;1631:39;;;;1672:4;1627:50;;1211:472;-1:-1:-1;;1211:472:1:o;1688:220::-;1837:2;1826:9;1819:21;1800:4;1857:45;1898:2;1887:9;1883:18;1875:6;1857:45;:::i;1913:180::-;1972:6;2025:2;2013:9;2004:7;2000:23;1996:32;1993:52;;;2041:1;2038;2031:12;1993:52;-1:-1:-1;2064:23:1;;1913:180;-1:-1:-1;1913:180:1:o;2098:127::-;2159:10;2154:3;2150:20;2147:1;2140:31;2190:4;2187:1;2180:15;2214:4;2211:1;2204:15;2230:249;2340:2;2321:13;;-1:-1:-1;;2317:27:1;2305:40;;-1:-1:-1;;;;;2360:34:1;;2396:22;;;2357:62;2354:88;;;2422:18;;:::i;:::-;2458:2;2451:22;-1:-1:-1;;2230:249:1:o;2484:556::-;2527:5;2580:3;2573:4;2565:6;2561:17;2557:27;2547:55;;2598:1;2595;2588:12;2547:55;2634:6;2621:20;-1:-1:-1;;;;;2656:2:1;2653:26;2650:52;;;2682:18;;:::i;:::-;2731:2;2725:9;2743:67;2798:2;2779:13;;-1:-1:-1;;2775:27:1;2804:4;2771:38;2725:9;2743:67;:::i;:::-;2834:2;2826:6;2819:18;2880:3;2873:4;2868:2;2860:6;2856:15;2852:26;2849:35;2846:55;;;2897:1;2894;2887:12;2846:55;2961:2;2954:4;2946:6;2942:17;2935:4;2927:6;2923:17;2910:54;3008:1;2984:15;;;3001:4;2980:26;2973:37;;;;2988:6;2484:556;-1:-1:-1;;;2484:556:1:o;3045:390::-;3123:6;3131;3184:2;3172:9;3163:7;3159:23;3155:32;3152:52;;;3200:1;3197;3190:12;3152:52;3236:9;3223:23;3213:33;;3297:2;3286:9;3282:18;3269:32;-1:-1:-1;;;;;3316:6:1;3313:30;3310:50;;;3356:1;3353;3346:12;3310:50;3379;3421:7;3412:6;3401:9;3397:22;3379:50;:::i;:::-;3369:60;;;3045:390;;;;;:::o;3440:183::-;3500:4;-1:-1:-1;;;;;3525:6:1;3522:30;3519:56;;;3555:18;;:::i;:::-;-1:-1:-1;3600:1:1;3596:14;3612:4;3592:25;;3440:183::o;3628:724::-;3682:5;3735:3;3728:4;3720:6;3716:17;3712:27;3702:55;;3753:1;3750;3743:12;3702:55;3789:6;3776:20;3815:4;3838:43;3878:2;3838:43;:::i;:::-;3910:2;3904:9;3922:31;3950:2;3942:6;3922:31;:::i;:::-;3988:18;;;4080:1;4076:10;;;;4064:23;;4060:32;;;4022:15;;;;-1:-1:-1;4104:15:1;;;4101:35;;;4132:1;4129;4122:12;4101:35;4168:2;4160:6;4156:15;4180:142;4196:6;4191:3;4188:15;4180:142;;;4262:17;;4250:30;;4300:12;;;;4213;;4180:142;;;-1:-1:-1;4340:6:1;3628:724;-1:-1:-1;;;;;;3628:724:1:o;4357:944::-;4511:6;4519;4527;4535;4543;4596:3;4584:9;4575:7;4571:23;4567:33;4564:53;;;4613:1;4610;4603:12;4564:53;4636:29;4655:9;4636:29;:::i;:::-;4626:39;;4684:38;4718:2;4707:9;4703:18;4684:38;:::i;:::-;4674:48;;4773:2;4762:9;4758:18;4745:32;-1:-1:-1;;;;;4837:2:1;4829:6;4826:14;4823:34;;;4853:1;4850;4843:12;4823:34;4876:61;4929:7;4920:6;4909:9;4905:22;4876:61;:::i;:::-;4866:71;;4990:2;4979:9;4975:18;4962:32;4946:48;;5019:2;5009:8;5006:16;5003:36;;;5035:1;5032;5025:12;5003:36;5058:63;5113:7;5102:8;5091:9;5087:24;5058:63;:::i;:::-;5048:73;;5174:3;5163:9;5159:19;5146:33;5130:49;;5204:2;5194:8;5191:16;5188:36;;;5220:1;5217;5210:12;5188:36;;5243:52;5287:7;5276:8;5265:9;5261:24;5243:52;:::i;:::-;5233:62;;;4357:944;;;;;;;;:::o;5306:248::-;5374:6;5382;5435:2;5423:9;5414:7;5410:23;5406:32;5403:52;;;5451:1;5448;5441:12;5403:52;-1:-1:-1;;5474:23:1;;;5544:2;5529:18;;;5516:32;;-1:-1:-1;5306:248:1:o;5748:322::-;5825:6;5833;5841;5894:2;5882:9;5873:7;5869:23;5865:32;5862:52;;;5910:1;5907;5900:12;5862:52;5933:29;5952:9;5933:29;:::i;:::-;5923:39;6009:2;5994:18;;5981:32;;-1:-1:-1;6060:2:1;6045:18;;;6032:32;;5748:322;-1:-1:-1;;;5748:322:1:o;6075:186::-;6134:6;6187:2;6175:9;6166:7;6162:23;6158:32;6155:52;;;6203:1;6200;6193:12;6155:52;6226:29;6245:9;6226:29;:::i;6266:730::-;6320:5;6373:3;6366:4;6358:6;6354:17;6350:27;6340:55;;6391:1;6388;6381:12;6340:55;6427:6;6414:20;6453:4;6476:43;6516:2;6476:43;:::i;:::-;6548:2;6542:9;6560:31;6588:2;6580:6;6560:31;:::i;:::-;6626:18;;;6718:1;6714:10;;;;6702:23;;6698:32;;;6660:15;;;;-1:-1:-1;6742:15:1;;;6739:35;;;6770:1;6767;6760:12;6739:35;6806:2;6798:6;6794:15;6818:148;6834:6;6829:3;6826:15;6818:148;;;6900:23;6919:3;6900:23;:::i;:::-;6888:36;;6944:12;;;;6851;;6818:148;;7001:595;7119:6;7127;7180:2;7168:9;7159:7;7155:23;7151:32;7148:52;;;7196:1;7193;7186:12;7148:52;7236:9;7223:23;-1:-1:-1;;;;;7306:2:1;7298:6;7295:14;7292:34;;;7322:1;7319;7312:12;7292:34;7345:61;7398:7;7389:6;7378:9;7374:22;7345:61;:::i;:::-;7335:71;;7459:2;7448:9;7444:18;7431:32;7415:48;;7488:2;7478:8;7475:16;7472:36;;;7504:1;7501;7494:12;7472:36;;7527:63;7582:7;7571:8;7560:9;7556:24;7527:63;:::i;7601:435::-;7654:3;7692:5;7686:12;7719:6;7714:3;7707:19;7745:4;7774:2;7769:3;7765:12;7758:19;;7811:2;7804:5;7800:14;7832:1;7842:169;7856:6;7853:1;7850:13;7842:169;;;7917:13;;7905:26;;7951:12;;;;7986:15;;;;7878:1;7871:9;7842:169;;;-1:-1:-1;8027:3:1;;7601:435;-1:-1:-1;;;;;7601:435:1:o;8041:261::-;8220:2;8209:9;8202:21;8183:4;8240:56;8292:2;8281:9;8277:18;8269:6;8240:56;:::i;8307:254::-;8375:6;8383;8436:2;8424:9;8415:7;8411:23;8407:32;8404:52;;;8452:1;8449;8442:12;8404:52;8488:9;8475:23;8465:33;;8517:38;8551:2;8540:9;8536:18;8517:38;:::i;:::-;8507:48;;8307:254;;;;;:::o;8566:484::-;8668:6;8676;8684;8737:2;8725:9;8716:7;8712:23;8708:32;8705:52;;;8753:1;8750;8743:12;8705:52;8793:9;8780:23;-1:-1:-1;;;;;8818:6:1;8815:30;8812:50;;;8858:1;8855;8848:12;8812:50;8881:61;8934:7;8925:6;8914:9;8910:22;8881:61;:::i;:::-;8871:71;8989:2;8974:18;;8961:32;;-1:-1:-1;9040:2:1;9025:18;;;9012:32;;8566:484;-1:-1:-1;;;;8566:484:1:o;9055:118::-;9141:5;9134:13;9127:21;9120:5;9117:32;9107:60;;9163:1;9160;9153:12;9178:309;9243:6;9251;9304:2;9292:9;9283:7;9279:23;9275:32;9272:52;;;9320:1;9317;9310:12;9272:52;9356:9;9343:23;9333:33;;9416:2;9405:9;9401:18;9388:32;9429:28;9451:5;9429:28;:::i;:::-;9476:5;9466:15;;;9178:309;;;;;:::o;9882:315::-;9947:6;9955;10008:2;9996:9;9987:7;9983:23;9979:32;9976:52;;;10024:1;10021;10014:12;9976:52;10047:29;10066:9;10047:29;:::i;:::-;10037:39;;10126:2;10115:9;10111:18;10098:32;10139:28;10161:5;10139:28;:::i;10202:367::-;10265:8;10275:6;10329:3;10322:4;10314:6;10310:17;10306:27;10296:55;;10347:1;10344;10337:12;10296:55;-1:-1:-1;10370:20:1;;-1:-1:-1;;;;;10402:30:1;;10399:50;;;10445:1;10442;10435:12;10399:50;10482:4;10474:6;10470:17;10458:29;;10542:3;10535:4;10525:6;10522:1;10518:14;10510:6;10506:27;10502:38;10499:47;10496:67;;;10559:1;10556;10549:12;10496:67;10202:367;;;;;:::o;10574:648::-;10687:6;10695;10703;10711;10719;10772:3;10760:9;10751:7;10747:23;10743:33;10740:53;;;10789:1;10786;10779:12;10740:53;10812:29;10831:9;10812:29;:::i;:::-;10802:39;;10888:2;10877:9;10873:18;10860:32;10850:42;;10939:2;10928:9;10924:18;10911:32;10901:42;;10994:2;10983:9;10979:18;10966:32;-1:-1:-1;;;;;11013:6:1;11010:30;11007:50;;;11053:1;11050;11043:12;11007:50;11092:70;11154:7;11145:6;11134:9;11130:22;11092:70;:::i;:::-;10574:648;;;;-1:-1:-1;10574:648:1;;-1:-1:-1;11181:8:1;;11066:96;10574:648;-1:-1:-1;;;10574:648:1:o;11227:579::-;11331:6;11339;11347;11355;11408:2;11396:9;11387:7;11383:23;11379:32;11376:52;;;11424:1;11421;11414:12;11376:52;11447:29;11466:9;11447:29;:::i;:::-;11437:39;;11523:2;11512:9;11508:18;11495:32;11485:42;;11578:2;11567:9;11563:18;11550:32;-1:-1:-1;;;;;11597:6:1;11594:30;11591:50;;;11637:1;11634;11627:12;11591:50;11676:70;11738:7;11729:6;11718:9;11714:22;11676:70;:::i;:::-;11227:579;;;;-1:-1:-1;11765:8:1;-1:-1:-1;;;;11227:579:1:o;11811:260::-;11879:6;11887;11940:2;11928:9;11919:7;11915:23;11911:32;11908:52;;;11956:1;11953;11946:12;11908:52;11979:29;11998:9;11979:29;:::i;:::-;11969:39;;12027:38;12061:2;12050:9;12046:18;12027:38;:::i;12329:607::-;12433:6;12441;12449;12457;12465;12518:3;12506:9;12497:7;12493:23;12489:33;12486:53;;;12535:1;12532;12525:12;12486:53;12558:29;12577:9;12558:29;:::i;:::-;12548:39;;12606:38;12640:2;12629:9;12625:18;12606:38;:::i;:::-;12596:48;;12691:2;12680:9;12676:18;12663:32;12653:42;;12742:2;12731:9;12727:18;12714:32;12704:42;;12797:3;12786:9;12782:19;12769:33;-1:-1:-1;;;;;12817:6:1;12814:30;12811:50;;;12857:1;12854;12847:12;12811:50;12880;12922:7;12913:6;12902:9;12898:22;12880:50;:::i;12941:1134::-;13070:6;13078;13086;13094;13102;13110;13118;13126;13134;13187:3;13175:9;13166:7;13162:23;13158:33;13155:53;;;13204:1;13201;13194:12;13155:53;13240:9;13227:23;13217:33;;13297:2;13286:9;13282:18;13269:32;13259:42;;13348:2;13337:9;13333:18;13320:32;13310:42;;13402:2;13391:9;13387:18;13374:32;13415:28;13437:5;13415:28;:::i;:::-;13462:5;-1:-1:-1;13519:3:1;13504:19;;13491:33;13533:30;13491:33;13533:30;:::i;:::-;13582:7;-1:-1:-1;13641:3:1;13626:19;;13613:33;13655:30;13613:33;13655:30;:::i;:::-;13704:7;-1:-1:-1;13758:3:1;13743:19;;13730:33;;-1:-1:-1;13815:3:1;13800:19;;13787:33;13829:30;13787:33;13829:30;:::i;:::-;13878:7;-1:-1:-1;13936:3:1;13921:19;;13908:33;-1:-1:-1;;;;;13953:30:1;;13950:50;;;13996:1;13993;13986:12;13950:50;14019;14061:7;14052:6;14041:9;14037:22;14019:50;:::i;:::-;14009:60;;;12941:1134;;;;;;;;;;;:::o;14080:322::-;14157:6;14165;14173;14226:2;14214:9;14205:7;14201:23;14197:32;14194:52;;;14242:1;14239;14232:12;14194:52;14278:9;14265:23;14255:33;;14307:38;14341:2;14330:9;14326:18;14307:38;:::i;:::-;14297:48;;14392:2;14381:9;14377:18;14364:32;14354:42;;14080:322;;;;;:::o;14819:380::-;14898:1;14894:12;;;;14941;;;14962:61;;15016:4;15008:6;15004:17;14994:27;;14962:61;15069:2;15061:6;15058:14;15038:18;15035:38;15032:161;;;15115:10;15110:3;15106:20;15103:1;15096:31;15150:4;15147:1;15140:15;15178:4;15175:1;15168:15;15032:161;;14819:380;;;:::o;15204:127::-;15265:10;15260:3;15256:20;15253:1;15246:31;15296:4;15293:1;15286:15;15320:4;15317:1;15310:15;15336:347;15538:2;15520:21;;;15577:2;15557:18;;;15550:30;15616:25;15611:2;15596:18;;15589:53;15674:2;15659:18;;15336:347::o;15688:127::-;15749:10;15744:3;15740:20;15737:1;15730:31;15780:4;15777:1;15770:15;15804:4;15801:1;15794:15;15820:135;15859:3;-1:-1:-1;;15880:17:1;;15877:43;;;15900:18;;:::i;:::-;-1:-1:-1;15947:1:1;15936:13;;15820:135::o;15960:414::-;16162:2;16144:21;;;16201:2;16181:18;;;16174:30;16240:34;16235:2;16220:18;;16213:62;-1:-1:-1;;;16306:2:1;16291:18;;16284:48;16364:3;16349:19;;15960:414::o;16789:168::-;16829:7;16895:1;16891;16887:6;16883:14;16880:1;16877:21;16872:1;16865:9;16858:17;16854:45;16851:71;;;16902:18;;:::i;:::-;-1:-1:-1;16942:9:1;;16789:168::o;16962:128::-;17002:3;17033:1;17029:6;17026:1;17023:13;17020:39;;;17039:18;;:::i;:::-;-1:-1:-1;17075:9:1;;16962:128::o;17095:340::-;17297:2;17279:21;;;17336:2;17316:18;;;17309:30;-1:-1:-1;;;17370:2:1;17355:18;;17348:46;17426:2;17411:18;;17095:340::o;17440:184::-;17510:6;17563:2;17551:9;17542:7;17538:23;17534:32;17531:52;;;17579:1;17576;17569:12;17531:52;-1:-1:-1;17602:16:1;;17440:184;-1:-1:-1;17440:184:1:o;18033:217::-;18073:1;18099;18089:132;;18143:10;18138:3;18134:20;18131:1;18124:31;18178:4;18175:1;18168:15;18206:4;18203:1;18196:15;18089:132;-1:-1:-1;18235:9:1;;18033:217::o;18534:245::-;18601:6;18654:2;18642:9;18633:7;18629:23;18625:32;18622:52;;;18670:1;18667;18660:12;18622:52;18702:9;18696:16;18721:28;18743:5;18721:28;:::i;19729:405::-;19931:2;19913:21;;;19970:2;19950:18;;;19943:30;20009:34;20004:2;19989:18;;19982:62;-1:-1:-1;;;20075:2:1;20060:18;;20053:39;20124:3;20109:19;;19729:405::o;21365:401::-;21567:2;21549:21;;;21606:2;21586:18;;;21579:30;21645:34;21640:2;21625:18;;21618:62;-1:-1:-1;;;21711:2:1;21696:18;;21689:35;21756:3;21741:19;;21365:401::o;21771:406::-;21973:2;21955:21;;;22012:2;21992:18;;;21985:30;22051:34;22046:2;22031:18;;22024:62;-1:-1:-1;;;22117:2:1;22102:18;;22095:40;22167:3;22152:19;;21771:406::o;22182:465::-;22439:2;22428:9;22421:21;22402:4;22465:56;22517:2;22506:9;22502:18;22494:6;22465:56;:::i;:::-;22569:9;22561:6;22557:22;22552:2;22541:9;22537:18;22530:50;22597:44;22634:6;22626;22597:44;:::i;:::-;22589:52;22182:465;-1:-1:-1;;;;;22182:465:1:o;24736:827::-;-1:-1:-1;;;;;25133:15:1;;;25115:34;;25185:15;;25180:2;25165:18;;25158:43;25095:3;25232:2;25217:18;;25210:31;;;25058:4;;25264:57;;25301:19;;25293:6;25264:57;:::i;:::-;25369:9;25361:6;25357:22;25352:2;25341:9;25337:18;25330:50;25403:44;25440:6;25432;25403:44;:::i;:::-;25389:58;;25496:9;25488:6;25484:22;25478:3;25467:9;25463:19;25456:51;25524:33;25550:6;25542;25524:33;:::i;:::-;25516:41;24736:827;-1:-1:-1;;;;;;;;24736:827:1:o;25568:249::-;25637:6;25690:2;25678:9;25669:7;25665:23;25661:32;25658:52;;;25706:1;25703;25696:12;25658:52;25738:9;25732:16;25757:30;25781:5;25757:30;:::i;25822:179::-;25857:3;25899:1;25881:16;25878:23;25875:120;;;25945:1;25942;25939;25924:23;-1:-1:-1;25982:1:1;25976:8;25971:3;25967:18;25875:120;25822:179;:::o;26006:671::-;26045:3;26087:4;26069:16;26066:26;26063:39;;;26006:671;:::o;26063:39::-;26129:2;26123:9;-1:-1:-1;;26194:16:1;26190:25;;26187:1;26123:9;26166:50;26245:4;26239:11;26269:16;-1:-1:-1;;;;;26375:2:1;26368:4;26360:6;26356:17;26353:25;26348:2;26340:6;26337:14;26334:45;26331:58;;;26382:5;;;;;26006:671;:::o;26331:58::-;26419:6;26413:4;26409:17;26398:28;;26455:3;26449:10;26482:2;26474:6;26471:14;26468:27;;;26488:5;;;;;;26006:671;:::o;26468:27::-;26572:2;26553:16;26547:4;26543:27;26539:36;26532:4;26523:6;26518:3;26514:16;26510:27;26507:69;26504:82;;;26579:5;;;;;;26006:671;:::o;26504:82::-;26595:57;26646:4;26637:6;26629;26625:19;26621:30;26615:4;26595:57;:::i;:::-;-1:-1:-1;26668:3:1;;26006:671;-1:-1:-1;;;;;26006:671:1:o;27103:404::-;27305:2;27287:21;;;27344:2;27324:18;;;27317:30;27383:34;27378:2;27363:18;;27356:62;-1:-1:-1;;;27449:2:1;27434:18;;27427:38;27497:3;27482:19;;27103:404::o;27512:561::-;-1:-1:-1;;;;;27809:15:1;;;27791:34;;27861:15;;27856:2;27841:18;;27834:43;27908:2;27893:18;;27886:34;;;27951:2;27936:18;;27929:34;;;27771:3;27994;27979:19;;27972:32;;;27734:4;;28021:46;;28047:19;;28039:6;28021:46;:::i;:::-;28013:54;27512:561;-1:-1:-1;;;;;;;27512:561:1:o;28633:125::-;28673:4;28701:1;28698;28695:8;28692:34;;;28706:18;;:::i;:::-;-1:-1:-1;28743:9:1;;28633:125::o

Swarm Source

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