POL Price: $0.299674 (+1.76%)
Gas: 30 GWei
 

Overview

Max Total Supply

0

Holders

33,494

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0xf0723CF004b4b36660C754E8b1876abe217e5260
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
FlowerGirlsDrawingInspirations

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2022-02-09
*/

/*
 *   Drawing Inspirations is an ERC-1155 Smart Contract
 *   Deployed on the Polygon Layer-2 Ethereum network
 *   It was created for Flower Girls by Ryan Meyers (@sreyeMnayR)
 *   If you like it, go mint a fork and help us feed people at https://forkhunger.art
 *   
 */
// File: @openzeppelin_contracts/utils/ContextMixin.sol



pragma solidity ^0.8.0;

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/ContextMixin.sol
 */

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


// File: @openzeppelin_contracts/interfaces/IERC2981.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin_contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts v4.4.0 (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the Royalty Standard allowing royalty information to be stored and retrieved.
 *
 * Adds the {_setTokenRoyalty} methods to set the token royalty information, and {_setDefaultRoyalty} method to set a default
 * royalty information.
 *
 * NOTE: As specified in EIP-2981, royalties are technically optional and payment is not enforced by this contract.
 * See https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @dev Sets the royalty info for a specific token id, overriding the default royalty info.
     *
     * Requirements:
     * - `tokenId` must be already mined.
     * - `receiver` cannot be the zero address.
     * - `fraction` must indicate the percentage fraction using two decimals.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 fraction
    ) internal virtual {
        require(fraction <= _feeDenominator(), "ERC2981: Royalty percentage will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, fraction);
    }

    /**
     * @dev Sets the royalty info that tokens will default to.
     *
     * Requirements:
     * - `receiver` cannot be the zero address.
     * - `fraction` must indicate the percentage fraction. Needs to be set appropriately
     * according to the _feeDenominator granularity.
     */
    function _setDefaultRoyalty(address receiver, uint96 fraction) internal virtual {
        require(fraction <= _feeDenominator(), "ERC2981: Royalty percentage will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, fraction);
    }

    /**
     * @dev See {IERC2981-royaltyInfo}
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev Returns the percentage granularity being used. The default denominator is 10000
     *  but it can be customized by an override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Removes `tokenId` royalty information.
     * The royalty information is cleared and the token royalty fallbacks to the default royalty.
     *
     * Requirements:
     *
     * - `tokenId` royalty information must exist.
     *
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }

    /**
     * @dev Removes default royalty information.
     *
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }
}
// File: @openzeppelin/contracts/access/AccessControl.sol


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

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// 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: @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._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // 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 {
        _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 {
        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 {
        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;
    }
}

// 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 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @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: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

// File: DrawingInspirations.sol


// Flower Girls Inspirations (Flower Girl Heroes.sol)

pragma solidity ^0.8.2;








contract FlowerGirlsDrawingInspirations is ERC1155, ERC2981, AccessControl, ERC1155Burnable, ERC1155Supply, ContextMixin {
    bytes32 public constant MANAGER_ROLE = keccak256("MANAGER_ROLE");
    bytes32 public constant AIRDROPPER_ROLE = keccak256("AIRDROPPER_ROLE");
    bytes32 public constant ROYALTY_ROLE = keccak256("ROYALTY_ROLE");
    
    uint256 public current_token = 0;
    uint256 public minimum_price = 10 ether;
    address public SEED_STORE = 0xCc582e3294Bcdd6d0611779247e096499f5E0443;

    mapping(uint256 => string) public tokenURIs;
    mapping(uint256 => bool) public tokenMintable;
    mapping(uint256 => address) public artistAddresses;

    constructor() ERC1155("https://meta.flowergirlsnft.com/inspirations/{id}.json") {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(MANAGER_ROLE, msg.sender);
        _grantRole(AIRDROPPER_ROLE, msg.sender);
        _grantRole(ROYALTY_ROLE, msg.sender);

        _setDefaultRoyalty(0x74eF29338Ee82F14bE21E33C175C8B143Cc1513C, 1000);
    }

    // One method to rule them all! 
    // Provide the URL and royalties receiver address
    // Turns off mint for previous token
    // Sets URI and royalties
    // Mints 5 to the artist wallet
    // Mints 100 to the Seed Store
    // Turns on mint
    function drawInspiration(
      string memory _tokenURI,
      address _royalties_receiver
    ) external onlyRole(MANAGER_ROLE){
      payable(artistAddresses[current_token]).transfer(address(this).balance);
      tokenMintable[current_token] = false;
      current_token += 1;
      tokenURIs[current_token] = _tokenURI;
      artistAddresses[current_token] = _royalties_receiver;
      _setTokenRoyalty(current_token, _royalties_receiver, 1000);
      _mint(_royalties_receiver, current_token, 5, "");
      _mint(SEED_STORE, current_token, 100, "");
      tokenMintable[current_token] = true;
    }

    function payArtist() external onlyRole(MANAGER_ROLE){
      payable(artistAddresses[current_token]).transfer(address(this).balance);
    }

    function getCurrentToken() public view returns(uint256) {
      return current_token;
    }

    function getCurrentUri() public view returns(string memory) {
        return uri(current_token);
    }

    function setTokenURI(
        uint256 _tokenId,
        string memory _tokenURI
    ) external onlyRole(MANAGER_ROLE){
        tokenURIs[_tokenId] = _tokenURI;
    }

    function setMinimumForTwo(
        uint256 _newMinimum
    ) external onlyRole(MANAGER_ROLE){
        minimum_price = _newMinimum * (1 ether);
    }

    function flipTokenMintable(
        uint256 _tokenId
    ) external onlyRole(MANAGER_ROLE){
        tokenMintable[_tokenId] = !tokenMintable[_tokenId];
    }

    function isTokenMintable(
        uint256 _tokenId
    ) public view returns (bool) {
       return tokenMintable[_tokenId];
    }

    function uri(uint256 _tokenID) override public view returns (string memory) {
    if(bytes(tokenURIs[_tokenID]).length > 0){
            return tokenURIs[_tokenID];
        }
    return super.uri(_tokenID);
    }

    function setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 fraction
    ) external onlyRole(ROYALTY_ROLE) {
        artistAddresses[tokenId] = receiver;
        _setTokenRoyalty(tokenId, receiver, fraction);
    }

    function setDefaultRoyalty(address receiver, uint96 fraction) external onlyRole(ROYALTY_ROLE) {
        _setDefaultRoyalty(receiver, fraction);
    }

    function setURI(string calldata newuri) external onlyRole(AIRDROPPER_ROLE) {
        _setURI(newuri);
    }

    function mint()
        payable
        external
    {
        require(isTokenMintable(current_token), "That token is not mintable");
        require(balanceOf(msg.sender, current_token) < 1, "Only one mint allowed per wallet");
        if(msg.value >= minimum_price){
          _mint(msg.sender, current_token, 2, "");
        } else {
          _mint(msg.sender, current_token, 1, "");
        }
        
    }

    function mintBatch(address to, uint256[] calldata ids, uint256[] calldata amounts)
        external
        onlyRole(AIRDROPPER_ROLE)
    {
        _mintBatch(to, ids, amounts, "");
    }

    function airdrop_single(
        address[] calldata recipients,
        uint256 _tokenId
    ) external onlyRole(AIRDROPPER_ROLE) {
        require(recipients.length > 0, "Airdrop: need addresses");
        require(_tokenId >= 0, "tokenId must be zero or greater");
        
        for (uint256 i = 0; i < recipients.length; i++) {
            _mint(recipients[i], _tokenId, 1, "");
        }
    }

    // The following functions are overrides required by Solidity.

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

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

    /**
   * Override isApprovedForAll to auto-approve OS's proxy contract
   */
    function isApprovedForAll(
        address _owner,
        address _operator
    ) public override view returns (bool isOperator) {
        // if OpenSea's ERC1155 Proxy Address is detected, auto-return true
       if (_operator == address(0x207Fa8Df3a17D96Ca7EA4f2893fcdCb78a304101)) {
            return true;
        }
        // otherwise, use the default ERC1155.isApprovedForAll()
        return ERC1155.isApprovedForAll(_owner, _operator);
    }

    /** @dev Meta-transactions override for OpenSea. */

    function _msgSender() internal override view returns (address) {
        return ContextMixin.msgSender();
    }

}
// According the the USDA, at least 10.5% of all households in the United States
// are food insecure. Their definition for food insecurity is "uncertain of having, 
// or unable to acquire, enough food to meet the needs of all their members because 
// they had insufficient money or other resources for food. 
// [https://www.ers.usda.gov/topics/food-nutrition-assistance/food-security-in-the-us/key-statistics-graphics.aspx]

// Other "developed" countries have similar challenges making sure everyone has
// enough to eat. An estimated 7.2% of the population in high income countries 
// used food banks in 2013. [https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6572174/]

// We can do better than this! While we wait and work for social structures to 
// improve, however, it's super important to support the existing systems of
// food banks and other charitable organizations focused on feeding people.
// Non-Fungible Forks [forkhunger.art] is a 100% charity project created by 
// Ryan [dad/dev] & Anna [daughter/artiste] to attempt to do just that.

// F**K HUNGER!

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"AIRDROPPER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEED_STORE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"airdrop_single","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"artistAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"current_token","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"address","name":"_royalties_receiver","type":"address"}],"name":"drawInspiration","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":"_tokenId","type":"uint256"}],"name":"flipTokenMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCurrentToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isTokenMintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimum_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"payArtist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"fraction","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMinimum","type":"uint256"}],"name":"setMinimumForTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"fraction","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURIs","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"_tokenID","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526000600755678ac7230489e80000600855600980546001600160a01b03191673cc582e3294bcdd6d0611779247e096499f5e04431790553480156200004857600080fd5b5060405180606001604052806036815260200162003a60603691396200006e8162000128565b506200007c60003362000141565b620000a87f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b083362000141565b620000d47ff9091c9c3be31b80afbe6fb18ac7f65afc7ae70116c905e33ea83c890fdda9243362000141565b620001007feb54e1feee3ae17add098cbf58a47457bf5f7c3a89ceab263cbdb01b3da6d98e3362000141565b620001227374ef29338ee82f14be21e33c175c8b143cc1513c6103e8620001e7565b62000451565b80516200013d9060029060208401906200036e565b5050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff166200013d5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001a3620002f3565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6127106001600160601b0382161115620002625760405162461bcd60e51b815260206004820152603160248201527f455243323938313a20526f79616c74792070657263656e746167652077696c6c604482015270206578636565642073616c65507269636560781b60648201526084015b60405180910390fd5b6001600160a01b038216620002ba5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20496e76616c696420726563656976657200000000000000604482015260640162000259565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600355565b60006200030a6200030f60201b620015331760201c565b905090565b6000333014156200036857600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200036b9050565b50335b90565b8280546200037c9062000414565b90600052602060002090601f016020900481019282620003a05760008555620003eb565b82601f10620003bb57805160ff1916838001178555620003eb565b82800160010185558215620003eb579182015b82811115620003eb578251825591602001919060010190620003ce565b50620003f9929150620003fd565b5090565b5b80821115620003f95760008155600101620003fe565b600181811c908216806200042957607f821691505b602082108114156200044b57634e487b7160e01b600052602260045260246000fd5b50919050565b6135ff80620004616000396000f3fe6080604052600436106102505760003560e01c80636b20c45411610139578063ba8c86b0116100b6578063d81d0a151161007a578063d81d0a1514610776578063e985e9c514610796578063ec87621c146107b6578063ef2d1746146107d8578063f242432a146107ed578063f5298aca1461080d57600080fd5b8063ba8c86b0146106bf578063bcf31f77146106d5578063bd85b039146106f5578063cb9fcffb14610722578063d547741f1461075657600080fd5b8063831ffd05116100fd578063831ffd0514610614578063864988e41461064a57806391d148541461066a578063a217fddf1461068a578063a22cb4651461069f57600080fd5b80636b20c4541461056f5780636c8b703f1461058f578063734c8f80146105af57806377d19f7b146105c45780637e4a108a146105f457600080fd5b80632a5b1c09116101d25780634c0ee8b3116101965780634c0ee8b31461048d5780634e1273f4146104ad5780634f558e79146104da578063516bad81146105095780635944c753146105395780635cfd8edb1461055957600080fd5b80632a5b1c09146103d35780632eb2c2d61461040b5780632f2ff15d1461042b57806336568abe1461044b5780633b79276c1461046b57600080fd5b80630e89341c116102195780630e89341c1461031c5780631249c58b1461033c578063162094c414610344578063248a9ca3146103645780632a55205a1461039457600080fd5b8062fdd58e1461025557806301ffc9a71461028857806302fe5305146102b857806304634d8d146102da578063098dcd8a146102fa575b600080fd5b34801561026157600080fd5b506102756102703660046127b4565b61082d565b6040519081526020015b60405180910390f35b34801561029457600080fd5b506102a86102a33660046127f7565b6108c7565b604051901515815260200161027f565b3480156102c457600080fd5b506102d86102d3366004612814565b6108ec565b005b3480156102e657600080fd5b506102d86102f536600461289c565b610950565b34801561030657600080fd5b5061030f610987565b60405161027f9190612927565b34801561032857600080fd5b5061030f61033736600461293a565b610999565b6102d8610a66565b34801561035057600080fd5b506102d861035f366004612a08565b610b69565b34801561037057600080fd5b5061027561037f36600461293a565b60009081526005602052604090206001015490565b3480156103a057600080fd5b506103b46103af366004612a4e565b610ba9565b604080516001600160a01b03909316835260208301919091520161027f565b3480156103df57600080fd5b506009546103f3906001600160a01b031681565b6040516001600160a01b03909116815260200161027f565b34801561041757600080fd5b506102d8610426366004612b04565b610c57565b34801561043757600080fd5b506102d8610446366004612bad565b610d00565b34801561045757600080fd5b506102d8610466366004612bad565b610d28565b34801561047757600080fd5b506102756000805160206135aa83398151915281565b34801561049957600080fd5b506102d86104a8366004612c14565b610db6565b3480156104b957600080fd5b506104cd6104c8366004612c5f565b610e7d565b60405161027f9190612d5a565b3480156104e657600080fd5b506102a86104f536600461293a565b600090815260066020526040902054151590565b34801561051557600080fd5b506102a861052436600461293a565b6000908152600b602052604090205460ff1690565b34801561054557600080fd5b506102d8610554366004612d6d565b610fa6565b34801561056557600080fd5b5061027560075481565b34801561057b57600080fd5b506102d861058a366004612da9565b611005565b34801561059b57600080fd5b5061030f6105aa36600461293a565b61105a565b3480156105bb57600080fd5b506102d86110f4565b3480156105d057600080fd5b506102a86105df36600461293a565b600b6020526000908152604090205460ff1681565b34801561060057600080fd5b506102d861060f366004612e1c565b611157565b34801561062057600080fd5b506103f361062f36600461293a565b600c602052600090815260409020546001600160a01b031681565b34801561065657600080fd5b506102d861066536600461293a565b6112b3565b34801561067657600080fd5b506102a8610685366004612bad565b6112ef565b34801561069657600080fd5b50610275600081565b3480156106ab57600080fd5b506102d86106ba366004612e60565b61131a565b3480156106cb57600080fd5b5061027560085481565b3480156106e157600080fd5b506102d86106f036600461293a565b61132c565b34801561070157600080fd5b5061027561071036600461293a565b60009081526006602052604090205490565b34801561072e57600080fd5b506102757feb54e1feee3ae17add098cbf58a47457bf5f7c3a89ceab263cbdb01b3da6d98e81565b34801561076257600080fd5b506102d8610771366004612bad565b611360565b34801561078257600080fd5b506102d8610791366004612e9c565b611388565b3480156107a257600080fd5b506102a86107b1366004612f1c565b611427565b3480156107c257600080fd5b5061027560008051602061358a83398151915281565b3480156107e457600080fd5b50600754610275565b3480156107f957600080fd5b506102d8610808366004612f46565b611487565b34801561081957600080fd5b506102d8610828366004612faa565b6114de565b60006001600160a01b03831661089e5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b0319821663152a902d60e11b14806108c157506108c182611590565b6000805160206135aa83398151915261090c816109076115b5565b6115bf565b61094b83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061162392505050565b505050565b7feb54e1feee3ae17add098cbf58a47457bf5f7c3a89ceab263cbdb01b3da6d98e61097d816109076115b5565b61094b8383611636565b6060610994600754610999565b905090565b6000818152600a60205260408120805460609291906109b790612fdd565b90501115610a5d576000828152600a6020526040902080546109d890612fdd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0490612fdd565b8015610a515780601f10610a2657610100808354040283529160200191610a51565b820191906000526020600020905b815481529060010190602001808311610a3457829003601f168201915b50505050509050919050565b6108c1826116f0565b6007546000908152600b602052604090205460ff16610ac75760405162461bcd60e51b815260206004820152601a60248201527f5468617420746f6b656e206973206e6f74206d696e7461626c650000000000006044820152606401610895565b6001610ad53360075461082d565b10610b225760405162461bcd60e51b815260206004820181905260248201527f4f6e6c79206f6e65206d696e7420616c6c6f776564207065722077616c6c65746044820152606401610895565b6008543410610b4b57610b49336007546002604051806020016040528060008152506116ff565b565b610b49336007546001604051806020016040528060008152506116ff565b60008051602061358a833981519152610b84816109076115b5565b6000838152600a602090815260409091208351610ba3928501906126ff565b50505050565b60008281526004602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c1e5750604080518082019091526003546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c3d906001600160601b03168761302e565b610c47919061304d565b91519350909150505b9250929050565b610c5f6115b5565b6001600160a01b0316856001600160a01b03161480610c855750610c85856107b16115b5565b610cec5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610895565b610cf985858585856117e0565b5050505050565b600082815260056020526040902060010154610d1e816109076115b5565b61094b838361198d565b610d306115b5565b6001600160a01b0316816001600160a01b031614610da85760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610895565b610db28282611a14565b5050565b6000805160206135aa833981519152610dd1816109076115b5565b82610e1e5760405162461bcd60e51b815260206004820152601760248201527f41697264726f703a206e656564206164647265737365730000000000000000006044820152606401610895565b60005b83811015610cf957610e6b858583818110610e3e57610e3e61306f565b9050602002016020810190610e539190613085565b846001604051806020016040528060008152506116ff565b80610e75816130a0565b915050610e21565b60608151835114610ee25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610895565b600083516001600160401b03811115610efd57610efd612953565b604051908082528060200260200182016040528015610f26578160200160208202803683370190505b50905060005b8451811015610f9e57610f71858281518110610f4a57610f4a61306f565b6020026020010151858381518110610f6457610f6461306f565b602002602001015161082d565b828281518110610f8357610f8361306f565b6020908102919091010152610f97816130a0565b9050610f2c565b509392505050565b7feb54e1feee3ae17add098cbf58a47457bf5f7c3a89ceab263cbdb01b3da6d98e610fd3816109076115b5565b6000848152600c6020526040902080546001600160a01b0319166001600160a01b038516179055610ba3848484611a99565b61100d6115b5565b6001600160a01b0316836001600160a01b031614806110335750611033836107b16115b5565b61104f5760405162461bcd60e51b8152600401610895906130bb565b61094b838383611b64565b600a602052600090815260409020805461107390612fdd565b80601f016020809104026020016040519081016040528092919081815260200182805461109f90612fdd565b80156110ec5780601f106110c1576101008083540402835291602001916110ec565b820191906000526020600020905b8154815290600101906020018083116110cf57829003601f168201915b505050505081565b60008051602061358a83398151915261110f816109076115b5565b6007546000908152600c60205260408082205490516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610db2573d6000803e3d6000fd5b60008051602061358a833981519152611172816109076115b5565b6007546000908152600c60205260408082205490516001600160a01b03909116914780156108fc02929091818181858888f193505050501580156111ba573d6000803e3d6000fd5b50600780546000908152600b60205260408120805460ff19169055815460019291906111e7908490613104565b90915550506007546000908152600a60209081526040909120845161120e928601906126ff565b50600780546000908152600c6020526040902080546001600160a01b0319166001600160a01b0385161790555461124890836103e8611a99565b611266826007546005604051806020016040528060008152506116ff565b600954600754604080516020810190915260008152611292926001600160a01b031691906064906116ff565b50506007546000908152600b60205260409020805460ff1916600117905550565b60008051602061358a8339815191526112ce816109076115b5565b506000908152600b60205260409020805460ff19811660ff90911615179055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b610db26113256115b5565b8383611cf9565b60008051602061358a833981519152611347816109076115b5565b61135982670de0b6b3a764000061302e565b6008555050565b60008281526005602052604090206001015461137e816109076115b5565b61094b8383611a14565b6000805160206135aa8339815191526113a3816109076115b5565b61141f8686868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808a02828101820190935289825290935089925088918291850190849080828437600092018290525060408051602081019091529081529250611dda915050565b505050505050565b60006001600160a01b03821673207fa8df3a17d96ca7ea4f2893fcdcb78a3041011415611456575060016108c1565b6001600160a01b0380841660009081526001602090815260408083209386168352929052205460ff165b9392505050565b61148f6115b5565b6001600160a01b0316856001600160a01b031614806114b557506114b5856107b16115b5565b6114d15760405162461bcd60e51b8152600401610895906130bb565b610cf98585858585611f3f565b6114e66115b5565b6001600160a01b0316836001600160a01b0316148061150c575061150c836107b16115b5565b6115285760405162461bcd60e51b8152600401610895906130bb565b61094b838383612067565b60003330141561158a57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061158d9050565b50335b90565b60006001600160e01b03198216637965db0b60e01b14806108c157506108c182612173565b6000610994611533565b6115c982826112ef565b610db2576115e1816001600160a01b03166014612198565b6115ec836020612198565b6040516020016115fd92919061311c565b60408051601f198184030181529082905262461bcd60e51b825261089591600401612927565b8051610db29060029060208401906126ff565b6127106001600160601b03821611156116615760405162461bcd60e51b815260040161089590613191565b6001600160a01b0382166116b75760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20496e76616c6964207265636569766572000000000000006044820152606401610895565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600355565b6060600280546109d890612fdd565b6001600160a01b0384166117255760405162461bcd60e51b8152600401610895906131e2565b600061172f6115b5565b90506117508160008761174188612333565b61174a88612333565b8761237e565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611780908490613104565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610cf98160008787878761238c565b81518351146118015760405162461bcd60e51b815260040161089590613223565b6001600160a01b0384166118275760405162461bcd60e51b81526004016108959061326b565b60006118316115b5565b905061184181878787878761237e565b60005b84518110156119275760008582815181106118615761186161306f565b60200260200101519050600085838151811061187f5761187f61306f565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156118cf5760405162461bcd60e51b8152600401610895906132b0565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061190c908490613104565b9250508190555050505080611920906130a0565b9050611844565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516119779291906132fa565b60405180910390a461141f8187878787876124e8565b61199782826112ef565b610db25760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556119d06115b5565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611a1e82826112ef565b15610db25760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19169055611a556115b5565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6127106001600160601b0382161115611ac45760405162461bcd60e51b815260040161089590613191565b6001600160a01b038216611b1a5760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d657465727300000000006044820152606401610895565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600490529190942093519051909116600160a01b029116179055565b6001600160a01b038316611b8a5760405162461bcd60e51b815260040161089590613328565b8051825114611bab5760405162461bcd60e51b815260040161089590613223565b6000611bb56115b5565b9050611bd58185600086866040518060200160405280600081525061237e565b60005b8351811015611c9a576000848281518110611bf557611bf561306f565b602002602001015190506000848381518110611c1357611c1361306f565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611c635760405162461bcd60e51b81526004016108959061336b565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611c92816130a0565b915050611bd8565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611ceb9291906132fa565b60405180910390a450505050565b816001600160a01b0316836001600160a01b03161415611d6d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610895565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611e005760405162461bcd60e51b8152600401610895906131e2565b8151835114611e215760405162461bcd60e51b815260040161089590613223565b6000611e2b6115b5565b9050611e3c8160008787878761237e565b60005b8451811015611ed757838181518110611e5a57611e5a61306f565b6020026020010151600080878481518110611e7757611e7761306f565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611ebf9190613104565b90915550819050611ecf816130a0565b915050611e3f565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f289291906132fa565b60405180910390a4610cf9816000878787876124e8565b6001600160a01b038416611f655760405162461bcd60e51b81526004016108959061326b565b6000611f6f6115b5565b9050611f8081878761174188612333565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611fc15760405162461bcd60e51b8152600401610895906132b0565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611ffe908490613104565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461205e82888888888861238c565b50505050505050565b6001600160a01b03831661208d5760405162461bcd60e51b815260040161089590613328565b60006120976115b5565b90506120c7818560006120a987612333565b6120b287612333565b6040518060200160405280600081525061237e565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156121085760405162461bcd60e51b81526004016108959061336b565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60006001600160e01b0319821663152a902d60e11b14806108c157506108c1826125a3565b606060006121a783600261302e565b6121b2906002613104565b6001600160401b038111156121c9576121c9612953565b6040519080825280601f01601f1916602001820160405280156121f3576020820181803683370190505b509050600360fc1b8160008151811061220e5761220e61306f565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061223d5761223d61306f565b60200101906001600160f81b031916908160001a905350600061226184600261302e565b61226c906001613104565b90505b60018111156122e4576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106122a0576122a061306f565b1a60f81b8282815181106122b6576122b661306f565b60200101906001600160f81b031916908160001a90535060049490941c936122dd816133af565b905061226f565b5083156114805760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610895565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061236d5761236d61306f565b602090810291909101015292915050565b61141f8686868686866125f3565b6001600160a01b0384163b1561141f5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906123d090899089908890889088906004016133c6565b6020604051808303816000875af192505050801561240b575060408051601f3d908101601f191682019092526124089181019061340b565b60015b6124b857612417613428565b806308c379a01415612451575061242c613443565b806124375750612453565b8060405162461bcd60e51b81526004016108959190612927565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610895565b6001600160e01b0319811663f23a6e6160e01b1461205e5760405162461bcd60e51b8152600401610895906134cc565b6001600160a01b0384163b1561141f5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061252c9089908990889088908890600401613514565b6020604051808303816000875af1925050508015612567575060408051601f3d908101601f191682019092526125649181019061340b565b60015b61257357612417613428565b6001600160e01b0319811663bc197c8160e01b1461205e5760405162461bcd60e51b8152600401610895906134cc565b60006001600160e01b03198216636cdb3d1360e11b14806125d457506001600160e01b031982166303a24d0760e21b145b806108c157506301ffc9a760e01b6001600160e01b03198316146108c1565b6001600160a01b03851661267a5760005b83518110156126785782818151811061261f5761261f61306f565b60200260200101516006600086848151811061263d5761263d61306f565b6020026020010151815260200190815260200160002060008282546126629190613104565b909155506126719050816130a0565b9050612604565b505b6001600160a01b03841661141f5760005b835181101561205e578281815181106126a6576126a661306f565b6020026020010151600660008684815181106126c4576126c461306f565b6020026020010151815260200190815260200160002060008282546126e99190613572565b909155506126f89050816130a0565b905061268b565b82805461270b90612fdd565b90600052602060002090601f01602090048101928261272d5760008555612773565b82601f1061274657805160ff1916838001178555612773565b82800160010185558215612773579182015b82811115612773578251825591602001919060010190612758565b5061277f929150612783565b5090565b5b8082111561277f5760008155600101612784565b80356001600160a01b03811681146127af57600080fd5b919050565b600080604083850312156127c757600080fd5b6127d083612798565b946020939093013593505050565b6001600160e01b0319811681146127f457600080fd5b50565b60006020828403121561280957600080fd5b8135611480816127de565b6000806020838503121561282757600080fd5b82356001600160401b038082111561283e57600080fd5b818501915085601f83011261285257600080fd5b81358181111561286157600080fd5b86602082850101111561287357600080fd5b60209290920196919550909350505050565b80356001600160601b03811681146127af57600080fd5b600080604083850312156128af57600080fd5b6128b883612798565b91506128c660208401612885565b90509250929050565b60005b838110156128ea5781810151838201526020016128d2565b83811115610ba35750506000910152565b600081518084526129138160208601602086016128cf565b601f01601f19169290920160200192915050565b60208152600061148060208301846128fb565b60006020828403121561294c57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b038111828210171561298e5761298e612953565b6040525050565b600082601f8301126129a657600080fd5b81356001600160401b038111156129bf576129bf612953565b6040516129d6601f8301601f191660200182612969565b8181528460208386010111156129eb57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060408385031215612a1b57600080fd5b8235915060208301356001600160401b03811115612a3857600080fd5b612a4485828601612995565b9150509250929050565b60008060408385031215612a6157600080fd5b50508035926020909101359150565b60006001600160401b03821115612a8957612a89612953565b5060051b60200190565b600082601f830112612aa457600080fd5b81356020612ab182612a70565b604051612abe8282612969565b83815260059390931b8501820192828101915086841115612ade57600080fd5b8286015b84811015612af95780358352918301918301612ae2565b509695505050505050565b600080600080600060a08688031215612b1c57600080fd5b612b2586612798565b9450612b3360208701612798565b935060408601356001600160401b0380821115612b4f57600080fd5b612b5b89838a01612a93565b94506060880135915080821115612b7157600080fd5b612b7d89838a01612a93565b93506080880135915080821115612b9357600080fd5b50612ba088828901612995565b9150509295509295909350565b60008060408385031215612bc057600080fd5b823591506128c660208401612798565b60008083601f840112612be257600080fd5b5081356001600160401b03811115612bf957600080fd5b6020830191508360208260051b8501011115610c5057600080fd5b600080600060408486031215612c2957600080fd5b83356001600160401b03811115612c3f57600080fd5b612c4b86828701612bd0565b909790965060209590950135949350505050565b60008060408385031215612c7257600080fd5b82356001600160401b0380821115612c8957600080fd5b818501915085601f830112612c9d57600080fd5b81356020612caa82612a70565b604051612cb78282612969565b83815260059390931b8501820192828101915089841115612cd757600080fd5b948201945b83861015612cfc57612ced86612798565b82529482019490820190612cdc565b96505086013592505080821115612d1257600080fd5b50612a4485828601612a93565b600081518084526020808501945080840160005b83811015612d4f57815187529582019590820190600101612d33565b509495945050505050565b6020815260006114806020830184612d1f565b600080600060608486031215612d8257600080fd5b83359250612d9260208501612798565b9150612da060408501612885565b90509250925092565b600080600060608486031215612dbe57600080fd5b612dc784612798565b925060208401356001600160401b0380821115612de357600080fd5b612def87838801612a93565b93506040860135915080821115612e0557600080fd5b50612e1286828701612a93565b9150509250925092565b60008060408385031215612e2f57600080fd5b82356001600160401b03811115612e4557600080fd5b612e5185828601612995565b9250506128c660208401612798565b60008060408385031215612e7357600080fd5b612e7c83612798565b915060208301358015158114612e9157600080fd5b809150509250929050565b600080600080600060608688031215612eb457600080fd5b612ebd86612798565b945060208601356001600160401b0380821115612ed957600080fd5b612ee589838a01612bd0565b90965094506040880135915080821115612efe57600080fd5b50612f0b88828901612bd0565b969995985093965092949392505050565b60008060408385031215612f2f57600080fd5b612f3883612798565b91506128c660208401612798565b600080600080600060a08688031215612f5e57600080fd5b612f6786612798565b9450612f7560208701612798565b9350604086013592506060860135915060808601356001600160401b03811115612f9e57600080fd5b612ba088828901612995565b600080600060608486031215612fbf57600080fd5b612fc884612798565b95602085013595506040909401359392505050565b600181811c90821680612ff157607f821691505b6020821081141561301257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561304857613048613018565b500290565b60008261306a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561309757600080fd5b61148082612798565b60006000198214156130b4576130b4613018565b5060010190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b6000821982111561311757613117613018565b500190565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516131548160178501602088016128cf565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516131858160288401602088016128cf565b01602801949350505050565b60208082526031908201527f455243323938313a20526f79616c74792070657263656e746167652077696c6c604082015270206578636565642073616c65507269636560781b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60408152600061330d6040830185612d1f565b828103602084015261331f8185612d1f565b95945050505050565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6000816133be576133be613018565b506000190190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613400908301846128fb565b979650505050505050565b60006020828403121561341d57600080fd5b8151611480816127de565b600060033d111561158d5760046000803e5060005160e01c90565b600060443d10156134515790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561348057505050505090565b82850191508151818111156134985750505050505090565b843d87010160208285010111156134b25750505050505090565b6134c160208286010187612969565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a06040820181905260009061354090830186612d1f565b82810360608401526135528186612d1f565b9050828103608084015261356681856128fb565b98975050505050505050565b60008282101561358457613584613018565b50039056fe241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08f9091c9c3be31b80afbe6fb18ac7f65afc7ae70116c905e33ea83c890fdda924a2646970667358221220c3b05d283b09681514bd0fd83e44e0a846dedcf04a520f3abe940175b6c7a38964736f6c634300080b003368747470733a2f2f6d6574612e666c6f7765726769726c736e66742e636f6d2f696e737069726174696f6e732f7b69647d2e6a736f6e

Deployed Bytecode

0x6080604052600436106102505760003560e01c80636b20c45411610139578063ba8c86b0116100b6578063d81d0a151161007a578063d81d0a1514610776578063e985e9c514610796578063ec87621c146107b6578063ef2d1746146107d8578063f242432a146107ed578063f5298aca1461080d57600080fd5b8063ba8c86b0146106bf578063bcf31f77146106d5578063bd85b039146106f5578063cb9fcffb14610722578063d547741f1461075657600080fd5b8063831ffd05116100fd578063831ffd0514610614578063864988e41461064a57806391d148541461066a578063a217fddf1461068a578063a22cb4651461069f57600080fd5b80636b20c4541461056f5780636c8b703f1461058f578063734c8f80146105af57806377d19f7b146105c45780637e4a108a146105f457600080fd5b80632a5b1c09116101d25780634c0ee8b3116101965780634c0ee8b31461048d5780634e1273f4146104ad5780634f558e79146104da578063516bad81146105095780635944c753146105395780635cfd8edb1461055957600080fd5b80632a5b1c09146103d35780632eb2c2d61461040b5780632f2ff15d1461042b57806336568abe1461044b5780633b79276c1461046b57600080fd5b80630e89341c116102195780630e89341c1461031c5780631249c58b1461033c578063162094c414610344578063248a9ca3146103645780632a55205a1461039457600080fd5b8062fdd58e1461025557806301ffc9a71461028857806302fe5305146102b857806304634d8d146102da578063098dcd8a146102fa575b600080fd5b34801561026157600080fd5b506102756102703660046127b4565b61082d565b6040519081526020015b60405180910390f35b34801561029457600080fd5b506102a86102a33660046127f7565b6108c7565b604051901515815260200161027f565b3480156102c457600080fd5b506102d86102d3366004612814565b6108ec565b005b3480156102e657600080fd5b506102d86102f536600461289c565b610950565b34801561030657600080fd5b5061030f610987565b60405161027f9190612927565b34801561032857600080fd5b5061030f61033736600461293a565b610999565b6102d8610a66565b34801561035057600080fd5b506102d861035f366004612a08565b610b69565b34801561037057600080fd5b5061027561037f36600461293a565b60009081526005602052604090206001015490565b3480156103a057600080fd5b506103b46103af366004612a4e565b610ba9565b604080516001600160a01b03909316835260208301919091520161027f565b3480156103df57600080fd5b506009546103f3906001600160a01b031681565b6040516001600160a01b03909116815260200161027f565b34801561041757600080fd5b506102d8610426366004612b04565b610c57565b34801561043757600080fd5b506102d8610446366004612bad565b610d00565b34801561045757600080fd5b506102d8610466366004612bad565b610d28565b34801561047757600080fd5b506102756000805160206135aa83398151915281565b34801561049957600080fd5b506102d86104a8366004612c14565b610db6565b3480156104b957600080fd5b506104cd6104c8366004612c5f565b610e7d565b60405161027f9190612d5a565b3480156104e657600080fd5b506102a86104f536600461293a565b600090815260066020526040902054151590565b34801561051557600080fd5b506102a861052436600461293a565b6000908152600b602052604090205460ff1690565b34801561054557600080fd5b506102d8610554366004612d6d565b610fa6565b34801561056557600080fd5b5061027560075481565b34801561057b57600080fd5b506102d861058a366004612da9565b611005565b34801561059b57600080fd5b5061030f6105aa36600461293a565b61105a565b3480156105bb57600080fd5b506102d86110f4565b3480156105d057600080fd5b506102a86105df36600461293a565b600b6020526000908152604090205460ff1681565b34801561060057600080fd5b506102d861060f366004612e1c565b611157565b34801561062057600080fd5b506103f361062f36600461293a565b600c602052600090815260409020546001600160a01b031681565b34801561065657600080fd5b506102d861066536600461293a565b6112b3565b34801561067657600080fd5b506102a8610685366004612bad565b6112ef565b34801561069657600080fd5b50610275600081565b3480156106ab57600080fd5b506102d86106ba366004612e60565b61131a565b3480156106cb57600080fd5b5061027560085481565b3480156106e157600080fd5b506102d86106f036600461293a565b61132c565b34801561070157600080fd5b5061027561071036600461293a565b60009081526006602052604090205490565b34801561072e57600080fd5b506102757feb54e1feee3ae17add098cbf58a47457bf5f7c3a89ceab263cbdb01b3da6d98e81565b34801561076257600080fd5b506102d8610771366004612bad565b611360565b34801561078257600080fd5b506102d8610791366004612e9c565b611388565b3480156107a257600080fd5b506102a86107b1366004612f1c565b611427565b3480156107c257600080fd5b5061027560008051602061358a83398151915281565b3480156107e457600080fd5b50600754610275565b3480156107f957600080fd5b506102d8610808366004612f46565b611487565b34801561081957600080fd5b506102d8610828366004612faa565b6114de565b60006001600160a01b03831661089e5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b0319821663152a902d60e11b14806108c157506108c182611590565b6000805160206135aa83398151915261090c816109076115b5565b6115bf565b61094b83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061162392505050565b505050565b7feb54e1feee3ae17add098cbf58a47457bf5f7c3a89ceab263cbdb01b3da6d98e61097d816109076115b5565b61094b8383611636565b6060610994600754610999565b905090565b6000818152600a60205260408120805460609291906109b790612fdd565b90501115610a5d576000828152600a6020526040902080546109d890612fdd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0490612fdd565b8015610a515780601f10610a2657610100808354040283529160200191610a51565b820191906000526020600020905b815481529060010190602001808311610a3457829003601f168201915b50505050509050919050565b6108c1826116f0565b6007546000908152600b602052604090205460ff16610ac75760405162461bcd60e51b815260206004820152601a60248201527f5468617420746f6b656e206973206e6f74206d696e7461626c650000000000006044820152606401610895565b6001610ad53360075461082d565b10610b225760405162461bcd60e51b815260206004820181905260248201527f4f6e6c79206f6e65206d696e7420616c6c6f776564207065722077616c6c65746044820152606401610895565b6008543410610b4b57610b49336007546002604051806020016040528060008152506116ff565b565b610b49336007546001604051806020016040528060008152506116ff565b60008051602061358a833981519152610b84816109076115b5565b6000838152600a602090815260409091208351610ba3928501906126ff565b50505050565b60008281526004602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c1e5750604080518082019091526003546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c3d906001600160601b03168761302e565b610c47919061304d565b91519350909150505b9250929050565b610c5f6115b5565b6001600160a01b0316856001600160a01b03161480610c855750610c85856107b16115b5565b610cec5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610895565b610cf985858585856117e0565b5050505050565b600082815260056020526040902060010154610d1e816109076115b5565b61094b838361198d565b610d306115b5565b6001600160a01b0316816001600160a01b031614610da85760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610895565b610db28282611a14565b5050565b6000805160206135aa833981519152610dd1816109076115b5565b82610e1e5760405162461bcd60e51b815260206004820152601760248201527f41697264726f703a206e656564206164647265737365730000000000000000006044820152606401610895565b60005b83811015610cf957610e6b858583818110610e3e57610e3e61306f565b9050602002016020810190610e539190613085565b846001604051806020016040528060008152506116ff565b80610e75816130a0565b915050610e21565b60608151835114610ee25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610895565b600083516001600160401b03811115610efd57610efd612953565b604051908082528060200260200182016040528015610f26578160200160208202803683370190505b50905060005b8451811015610f9e57610f71858281518110610f4a57610f4a61306f565b6020026020010151858381518110610f6457610f6461306f565b602002602001015161082d565b828281518110610f8357610f8361306f565b6020908102919091010152610f97816130a0565b9050610f2c565b509392505050565b7feb54e1feee3ae17add098cbf58a47457bf5f7c3a89ceab263cbdb01b3da6d98e610fd3816109076115b5565b6000848152600c6020526040902080546001600160a01b0319166001600160a01b038516179055610ba3848484611a99565b61100d6115b5565b6001600160a01b0316836001600160a01b031614806110335750611033836107b16115b5565b61104f5760405162461bcd60e51b8152600401610895906130bb565b61094b838383611b64565b600a602052600090815260409020805461107390612fdd565b80601f016020809104026020016040519081016040528092919081815260200182805461109f90612fdd565b80156110ec5780601f106110c1576101008083540402835291602001916110ec565b820191906000526020600020905b8154815290600101906020018083116110cf57829003601f168201915b505050505081565b60008051602061358a83398151915261110f816109076115b5565b6007546000908152600c60205260408082205490516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610db2573d6000803e3d6000fd5b60008051602061358a833981519152611172816109076115b5565b6007546000908152600c60205260408082205490516001600160a01b03909116914780156108fc02929091818181858888f193505050501580156111ba573d6000803e3d6000fd5b50600780546000908152600b60205260408120805460ff19169055815460019291906111e7908490613104565b90915550506007546000908152600a60209081526040909120845161120e928601906126ff565b50600780546000908152600c6020526040902080546001600160a01b0319166001600160a01b0385161790555461124890836103e8611a99565b611266826007546005604051806020016040528060008152506116ff565b600954600754604080516020810190915260008152611292926001600160a01b031691906064906116ff565b50506007546000908152600b60205260409020805460ff1916600117905550565b60008051602061358a8339815191526112ce816109076115b5565b506000908152600b60205260409020805460ff19811660ff90911615179055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b610db26113256115b5565b8383611cf9565b60008051602061358a833981519152611347816109076115b5565b61135982670de0b6b3a764000061302e565b6008555050565b60008281526005602052604090206001015461137e816109076115b5565b61094b8383611a14565b6000805160206135aa8339815191526113a3816109076115b5565b61141f8686868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808a02828101820190935289825290935089925088918291850190849080828437600092018290525060408051602081019091529081529250611dda915050565b505050505050565b60006001600160a01b03821673207fa8df3a17d96ca7ea4f2893fcdcb78a3041011415611456575060016108c1565b6001600160a01b0380841660009081526001602090815260408083209386168352929052205460ff165b9392505050565b61148f6115b5565b6001600160a01b0316856001600160a01b031614806114b557506114b5856107b16115b5565b6114d15760405162461bcd60e51b8152600401610895906130bb565b610cf98585858585611f3f565b6114e66115b5565b6001600160a01b0316836001600160a01b0316148061150c575061150c836107b16115b5565b6115285760405162461bcd60e51b8152600401610895906130bb565b61094b838383612067565b60003330141561158a57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061158d9050565b50335b90565b60006001600160e01b03198216637965db0b60e01b14806108c157506108c182612173565b6000610994611533565b6115c982826112ef565b610db2576115e1816001600160a01b03166014612198565b6115ec836020612198565b6040516020016115fd92919061311c565b60408051601f198184030181529082905262461bcd60e51b825261089591600401612927565b8051610db29060029060208401906126ff565b6127106001600160601b03821611156116615760405162461bcd60e51b815260040161089590613191565b6001600160a01b0382166116b75760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20496e76616c6964207265636569766572000000000000006044820152606401610895565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600355565b6060600280546109d890612fdd565b6001600160a01b0384166117255760405162461bcd60e51b8152600401610895906131e2565b600061172f6115b5565b90506117508160008761174188612333565b61174a88612333565b8761237e565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611780908490613104565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610cf98160008787878761238c565b81518351146118015760405162461bcd60e51b815260040161089590613223565b6001600160a01b0384166118275760405162461bcd60e51b81526004016108959061326b565b60006118316115b5565b905061184181878787878761237e565b60005b84518110156119275760008582815181106118615761186161306f565b60200260200101519050600085838151811061187f5761187f61306f565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156118cf5760405162461bcd60e51b8152600401610895906132b0565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061190c908490613104565b9250508190555050505080611920906130a0565b9050611844565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516119779291906132fa565b60405180910390a461141f8187878787876124e8565b61199782826112ef565b610db25760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556119d06115b5565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611a1e82826112ef565b15610db25760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19169055611a556115b5565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6127106001600160601b0382161115611ac45760405162461bcd60e51b815260040161089590613191565b6001600160a01b038216611b1a5760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d657465727300000000006044820152606401610895565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600490529190942093519051909116600160a01b029116179055565b6001600160a01b038316611b8a5760405162461bcd60e51b815260040161089590613328565b8051825114611bab5760405162461bcd60e51b815260040161089590613223565b6000611bb56115b5565b9050611bd58185600086866040518060200160405280600081525061237e565b60005b8351811015611c9a576000848281518110611bf557611bf561306f565b602002602001015190506000848381518110611c1357611c1361306f565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611c635760405162461bcd60e51b81526004016108959061336b565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611c92816130a0565b915050611bd8565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611ceb9291906132fa565b60405180910390a450505050565b816001600160a01b0316836001600160a01b03161415611d6d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610895565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611e005760405162461bcd60e51b8152600401610895906131e2565b8151835114611e215760405162461bcd60e51b815260040161089590613223565b6000611e2b6115b5565b9050611e3c8160008787878761237e565b60005b8451811015611ed757838181518110611e5a57611e5a61306f565b6020026020010151600080878481518110611e7757611e7761306f565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611ebf9190613104565b90915550819050611ecf816130a0565b915050611e3f565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f289291906132fa565b60405180910390a4610cf9816000878787876124e8565b6001600160a01b038416611f655760405162461bcd60e51b81526004016108959061326b565b6000611f6f6115b5565b9050611f8081878761174188612333565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611fc15760405162461bcd60e51b8152600401610895906132b0565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611ffe908490613104565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461205e82888888888861238c565b50505050505050565b6001600160a01b03831661208d5760405162461bcd60e51b815260040161089590613328565b60006120976115b5565b90506120c7818560006120a987612333565b6120b287612333565b6040518060200160405280600081525061237e565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156121085760405162461bcd60e51b81526004016108959061336b565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60006001600160e01b0319821663152a902d60e11b14806108c157506108c1826125a3565b606060006121a783600261302e565b6121b2906002613104565b6001600160401b038111156121c9576121c9612953565b6040519080825280601f01601f1916602001820160405280156121f3576020820181803683370190505b509050600360fc1b8160008151811061220e5761220e61306f565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061223d5761223d61306f565b60200101906001600160f81b031916908160001a905350600061226184600261302e565b61226c906001613104565b90505b60018111156122e4576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106122a0576122a061306f565b1a60f81b8282815181106122b6576122b661306f565b60200101906001600160f81b031916908160001a90535060049490941c936122dd816133af565b905061226f565b5083156114805760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610895565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061236d5761236d61306f565b602090810291909101015292915050565b61141f8686868686866125f3565b6001600160a01b0384163b1561141f5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906123d090899089908890889088906004016133c6565b6020604051808303816000875af192505050801561240b575060408051601f3d908101601f191682019092526124089181019061340b565b60015b6124b857612417613428565b806308c379a01415612451575061242c613443565b806124375750612453565b8060405162461bcd60e51b81526004016108959190612927565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610895565b6001600160e01b0319811663f23a6e6160e01b1461205e5760405162461bcd60e51b8152600401610895906134cc565b6001600160a01b0384163b1561141f5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061252c9089908990889088908890600401613514565b6020604051808303816000875af1925050508015612567575060408051601f3d908101601f191682019092526125649181019061340b565b60015b61257357612417613428565b6001600160e01b0319811663bc197c8160e01b1461205e5760405162461bcd60e51b8152600401610895906134cc565b60006001600160e01b03198216636cdb3d1360e11b14806125d457506001600160e01b031982166303a24d0760e21b145b806108c157506301ffc9a760e01b6001600160e01b03198316146108c1565b6001600160a01b03851661267a5760005b83518110156126785782818151811061261f5761261f61306f565b60200260200101516006600086848151811061263d5761263d61306f565b6020026020010151815260200190815260200160002060008282546126629190613104565b909155506126719050816130a0565b9050612604565b505b6001600160a01b03841661141f5760005b835181101561205e578281815181106126a6576126a661306f565b6020026020010151600660008684815181106126c4576126c461306f565b6020026020010151815260200190815260200160002060008282546126e99190613572565b909155506126f89050816130a0565b905061268b565b82805461270b90612fdd565b90600052602060002090601f01602090048101928261272d5760008555612773565b82601f1061274657805160ff1916838001178555612773565b82800160010185558215612773579182015b82811115612773578251825591602001919060010190612758565b5061277f929150612783565b5090565b5b8082111561277f5760008155600101612784565b80356001600160a01b03811681146127af57600080fd5b919050565b600080604083850312156127c757600080fd5b6127d083612798565b946020939093013593505050565b6001600160e01b0319811681146127f457600080fd5b50565b60006020828403121561280957600080fd5b8135611480816127de565b6000806020838503121561282757600080fd5b82356001600160401b038082111561283e57600080fd5b818501915085601f83011261285257600080fd5b81358181111561286157600080fd5b86602082850101111561287357600080fd5b60209290920196919550909350505050565b80356001600160601b03811681146127af57600080fd5b600080604083850312156128af57600080fd5b6128b883612798565b91506128c660208401612885565b90509250929050565b60005b838110156128ea5781810151838201526020016128d2565b83811115610ba35750506000910152565b600081518084526129138160208601602086016128cf565b601f01601f19169290920160200192915050565b60208152600061148060208301846128fb565b60006020828403121561294c57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b038111828210171561298e5761298e612953565b6040525050565b600082601f8301126129a657600080fd5b81356001600160401b038111156129bf576129bf612953565b6040516129d6601f8301601f191660200182612969565b8181528460208386010111156129eb57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060408385031215612a1b57600080fd5b8235915060208301356001600160401b03811115612a3857600080fd5b612a4485828601612995565b9150509250929050565b60008060408385031215612a6157600080fd5b50508035926020909101359150565b60006001600160401b03821115612a8957612a89612953565b5060051b60200190565b600082601f830112612aa457600080fd5b81356020612ab182612a70565b604051612abe8282612969565b83815260059390931b8501820192828101915086841115612ade57600080fd5b8286015b84811015612af95780358352918301918301612ae2565b509695505050505050565b600080600080600060a08688031215612b1c57600080fd5b612b2586612798565b9450612b3360208701612798565b935060408601356001600160401b0380821115612b4f57600080fd5b612b5b89838a01612a93565b94506060880135915080821115612b7157600080fd5b612b7d89838a01612a93565b93506080880135915080821115612b9357600080fd5b50612ba088828901612995565b9150509295509295909350565b60008060408385031215612bc057600080fd5b823591506128c660208401612798565b60008083601f840112612be257600080fd5b5081356001600160401b03811115612bf957600080fd5b6020830191508360208260051b8501011115610c5057600080fd5b600080600060408486031215612c2957600080fd5b83356001600160401b03811115612c3f57600080fd5b612c4b86828701612bd0565b909790965060209590950135949350505050565b60008060408385031215612c7257600080fd5b82356001600160401b0380821115612c8957600080fd5b818501915085601f830112612c9d57600080fd5b81356020612caa82612a70565b604051612cb78282612969565b83815260059390931b8501820192828101915089841115612cd757600080fd5b948201945b83861015612cfc57612ced86612798565b82529482019490820190612cdc565b96505086013592505080821115612d1257600080fd5b50612a4485828601612a93565b600081518084526020808501945080840160005b83811015612d4f57815187529582019590820190600101612d33565b509495945050505050565b6020815260006114806020830184612d1f565b600080600060608486031215612d8257600080fd5b83359250612d9260208501612798565b9150612da060408501612885565b90509250925092565b600080600060608486031215612dbe57600080fd5b612dc784612798565b925060208401356001600160401b0380821115612de357600080fd5b612def87838801612a93565b93506040860135915080821115612e0557600080fd5b50612e1286828701612a93565b9150509250925092565b60008060408385031215612e2f57600080fd5b82356001600160401b03811115612e4557600080fd5b612e5185828601612995565b9250506128c660208401612798565b60008060408385031215612e7357600080fd5b612e7c83612798565b915060208301358015158114612e9157600080fd5b809150509250929050565b600080600080600060608688031215612eb457600080fd5b612ebd86612798565b945060208601356001600160401b0380821115612ed957600080fd5b612ee589838a01612bd0565b90965094506040880135915080821115612efe57600080fd5b50612f0b88828901612bd0565b969995985093965092949392505050565b60008060408385031215612f2f57600080fd5b612f3883612798565b91506128c660208401612798565b600080600080600060a08688031215612f5e57600080fd5b612f6786612798565b9450612f7560208701612798565b9350604086013592506060860135915060808601356001600160401b03811115612f9e57600080fd5b612ba088828901612995565b600080600060608486031215612fbf57600080fd5b612fc884612798565b95602085013595506040909401359392505050565b600181811c90821680612ff157607f821691505b6020821081141561301257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561304857613048613018565b500290565b60008261306a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561309757600080fd5b61148082612798565b60006000198214156130b4576130b4613018565b5060010190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b6000821982111561311757613117613018565b500190565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516131548160178501602088016128cf565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516131858160288401602088016128cf565b01602801949350505050565b60208082526031908201527f455243323938313a20526f79616c74792070657263656e746167652077696c6c604082015270206578636565642073616c65507269636560781b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60408152600061330d6040830185612d1f565b828103602084015261331f8185612d1f565b95945050505050565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6000816133be576133be613018565b506000190190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613400908301846128fb565b979650505050505050565b60006020828403121561341d57600080fd5b8151611480816127de565b600060033d111561158d5760046000803e5060005160e01c90565b600060443d10156134515790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561348057505050505090565b82850191508151818111156134985750505050505090565b843d87010160208285010111156134b25750505050505090565b6134c160208286010187612969565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a06040820181905260009061354090830186612d1f565b82810360608401526135528186612d1f565b9050828103608084015261356681856128fb565b98975050505050505050565b60008282101561358457613584613018565b50039056fe241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08f9091c9c3be31b80afbe6fb18ac7f65afc7ae70116c905e33ea83c890fdda924a2646970667358221220c3b05d283b09681514bd0fd83e44e0a846dedcf04a520f3abe940175b6c7a38964736f6c634300080b0033

Deployed Bytecode Sourcemap

58516:6193:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41962:231;;;;;;;;;;-1:-1:-1;41962:231:0;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;41962:231:0;;;;;;;;63706:264;;;;;;;;;;-1:-1:-1;63706:264:0;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;63706:264:0;1019:187:1;62107:109:0;;;;;;;;;;-1:-1:-1;62107:109:0;;;;;:::i;:::-;;:::i;:::-;;61948:151;;;;;;;;;;-1:-1:-1;61948:151:0;;;;;:::i;:::-;;:::i;60701:104::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;61462:217::-;;;;;;;;;;-1:-1:-1;61462:217:0;;;;;:::i;:::-;;:::i;62224:424::-;;;:::i;60813:170::-;;;;;;;;;;-1:-1:-1;60813:170:0;;;;;:::i;:::-;;:::i;28954:123::-;;;;;;;;;;-1:-1:-1;28954:123:0;;;;;:::i;:::-;29020:7;29047:12;;;:6;:12;;;;;:22;;;;28954:123;23692:436;;;;;;;;;;-1:-1:-1;23692:436:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5345:32:1;;;5327:51;;5409:2;5394:18;;5387:34;;;;5300:18;23692:436:0;5153:274:1;58954:70:0;;;;;;;;;;-1:-1:-1;58954:70:0;;;;-1:-1:-1;;;;;58954:70:0;;;;;;-1:-1:-1;;;;;5596:32:1;;;5578:51;;5566:2;5551:18;58954:70:0;5432:203:1;43901:442:0;;;;;;;;;;-1:-1:-1;43901:442:0;;;;;:::i;:::-;;:::i;29339:147::-;;;;;;;;;;-1:-1:-1;29339:147:0;;;;;:::i;:::-;;:::i;30387:218::-;;;;;;;;;;-1:-1:-1;30387:218:0;;;;;:::i;:::-;;:::i;58715:70::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;58715:70:0;;62856:409;;;;;;;;;;-1:-1:-1;62856:409:0;;;;;:::i;:::-;;:::i;42359:524::-;;;;;;;;;;-1:-1:-1;42359:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56401:122::-;;;;;;;;;;-1:-1:-1;56401:122:0;;;;;:::i;:::-;56458:4;56279:16;;;:12;:16;;;;;;-1:-1:-1;;;56401:122:0;61320:134;;;;;;;;;;-1:-1:-1;61320:134:0;;;;;:::i;:::-;61400:4;61423:23;;;:13;:23;;;;;;;;;61320:134;61687:253;;;;;;;;;;-1:-1:-1;61687:253:0;;;;;:::i;:::-;;:::i;58869:32::-;;;;;;;;;;;;;;;;58020:353;;;;;;;;;;-1:-1:-1;58020:353:0;;;;;:::i;:::-;;:::i;59033:43::-;;;;;;;;;;-1:-1:-1;59033:43:0;;;;;:::i;:::-;;:::i;60452:140::-;;;;;;;;;;;;;:::i;59083:45::-;;;;;;;;;;-1:-1:-1;59083:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;59829:615;;;;;;;;;;-1:-1:-1;59829:615:0;;;;;:::i;:::-;;:::i;59135:50::-;;;;;;;;;;-1:-1:-1;59135:50:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;59135:50:0;;;61151:161;;;;;;;;;;-1:-1:-1;61151:161:0;;;;;:::i;:::-;;:::i;27839:139::-;;;;;;;;;;-1:-1:-1;27839:139:0;;;;;:::i;:::-;;:::i;26930:49::-;;;;;;;;;;-1:-1:-1;26930:49:0;26975:4;26930:49;;42956:155;;;;;;;;;;-1:-1:-1;42956:155:0;;;;;:::i;:::-;;:::i;58908:39::-;;;;;;;;;;;;;;;;60991:152;;;;;;;;;;-1:-1:-1;60991:152:0;;;;;:::i;:::-;;:::i;56190:113::-;;;;;;;;;;-1:-1:-1;56190:113:0;;;;;:::i;:::-;56252:7;56279:16;;;:12;:16;;;;;;;56190:113;58792:64;;;;;;;;;;;;58831:25;58792:64;;29731:149;;;;;;;;;;-1:-1:-1;29731:149:0;;;;;:::i;:::-;;:::i;62656:192::-;;;;;;;;;;-1:-1:-1;62656:192:0;;;;;:::i;:::-;;:::i;64062:462::-;;;;;;;;;;-1:-1:-1;64062:462:0;;;;;:::i;:::-;;:::i;58644:64::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;58644:64:0;;60600:93;;;;;;;;;;-1:-1:-1;60672:13:0;;60600:93;;43423:401;;;;;;;;;;-1:-1:-1;43423:401:0;;;;;:::i;:::-;;:::i;57691:321::-;;;;;;;;;;-1:-1:-1;57691:321:0;;;;;:::i;:::-;;:::i;41962:231::-;42048:7;-1:-1:-1;;;;;42076:21:0;;42068:77;;;;-1:-1:-1;;;42068:77:0;;14582:2:1;42068:77:0;;;14564:21:1;14621:2;14601:18;;;14594:30;14660:34;14640:18;;;14633:62;-1:-1:-1;;;14711:18:1;;;14704:41;14762:19;;42068:77:0;;;;;;;;;-1:-1:-1;42163:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;42163:22:0;;;;;;;;;;41962:231;;;;;:::o;63706:264::-;63852:4;-1:-1:-1;;;;;;63881:41:0;;-1:-1:-1;;;63881:41:0;;:81;;;63926:36;63950:11;63926:23;:36::i;62107:109::-;-1:-1:-1;;;;;;;;;;;27421:30:0;27432:4;27438:12;:10;:12::i;:::-;27421:10;:30::i;:::-;62193:15:::1;62201:6;;62193:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;62193:7:0::1;::::0;-1:-1:-1;;;62193:15:0:i:1;:::-;62107:109:::0;;;:::o;61948:151::-;58831:25;27421:30;27432:4;27438:12;:10;:12::i;27421:30::-;62053:38:::1;62072:8;62082;62053:18;:38::i;60701:104::-:0;60746:13;60779:18;60783:13;;60779:3;:18::i;:::-;60772:25;;60701:104;:::o;61462:217::-;61584:1;61554:19;;;:9;:19;;;;;61548:33;;61523:13;;61584:1;61554:19;61548:33;;;:::i;:::-;;;:37;61545:94;;;61608:19;;;;:9;:19;;;;;61601:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61462:217;;;:::o;61545:94::-;61652:19;61662:8;61652:9;:19::i;62224:424::-;62315:13;;61400:4;61423:23;;;:13;:23;;;;;;;;62291:69;;;;-1:-1:-1;;;62291:69:0;;15379:2:1;62291:69:0;;;15361:21:1;15418:2;15398:18;;;15391:30;15457:28;15437:18;;;15430:56;15503:18;;62291:69:0;15177:350:1;62291:69:0;62418:1;62379:36;62389:10;62401:13;;62379:9;:36::i;:::-;:40;62371:85;;;;-1:-1:-1;;;62371:85:0;;15734:2:1;62371:85:0;;;15716:21:1;;;15753:18;;;15746:30;15812:34;15792:18;;;15785:62;15864:18;;62371:85:0;15532:356:1;62371:85:0;62483:13;;62470:9;:26;62467:164;;62510:39;62516:10;62528:13;;62543:1;62510:39;;;;;;;;;;;;:5;:39::i;:::-;62224:424::o;62467:164::-;62580:39;62586:10;62598:13;;62613:1;62580:39;;;;;;;;;;;;:5;:39::i;60813:170::-;-1:-1:-1;;;;;;;;;;;27421:30:0;27432:4;27438:12;:10;:12::i;27421:30::-;60944:19:::1;::::0;;;:9:::1;:19;::::0;;;;;;;:31;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;60813:170:::0;;;:::o;23692:436::-;23783:7;23841:27;;;:17;:27;;;;;;;;23812:56;;;;;;;;;-1:-1:-1;;;;;23812:56:0;;;;;-1:-1:-1;;;23812:56:0;;;-1:-1:-1;;;;;23812:56:0;;;;;;;;23783:7;;23881:92;;-1:-1:-1;23932:29:0;;;;;;;;;23942:19;23932:29;-1:-1:-1;;;;;23932:29:0;;;;-1:-1:-1;;;23932:29:0;;-1:-1:-1;;;;;23932:29:0;;;;;23881:92;24023:23;;;;23985:21;;24381:5;;24010:36;;-1:-1:-1;;;;;24010:36:0;:10;:36;:::i;:::-;24009:58;;;;:::i;:::-;24088:16;;;-1:-1:-1;23985:82:0;;-1:-1:-1;;23692:436:0;;;;;;:::o;43901:442::-;44142:12;:10;:12::i;:::-;-1:-1:-1;;;;;44134:20:0;:4;-1:-1:-1;;;;;44134:20:0;;:60;;;;44158:36;44175:4;44181:12;:10;:12::i;44158:36::-;44112:160;;;;-1:-1:-1;;;44112:160:0;;16622:2:1;44112:160:0;;;16604:21:1;16661:2;16641:18;;;16634:30;16700:34;16680:18;;;16673:62;-1:-1:-1;;;16751:18:1;;;16744:48;16809:19;;44112:160:0;16420:414:1;44112:160:0;44283:52;44306:4;44312:2;44316:3;44321:7;44330:4;44283:22;:52::i;:::-;43901:442;;;;;:::o;29339:147::-;29020:7;29047:12;;;:6;:12;;;;;:22;;;27421:30;27432:4;27438:12;:10;:12::i;27421:30::-;29453:25:::1;29464:4;29470:7;29453:10;:25::i;30387:218::-:0;30494:12;:10;:12::i;:::-;-1:-1:-1;;;;;30483:23:0;:7;-1:-1:-1;;;;;30483:23:0;;30475:83;;;;-1:-1:-1;;;30475:83:0;;17041:2:1;30475:83:0;;;17023:21:1;17080:2;17060:18;;;17053:30;17119:34;17099:18;;;17092:62;-1:-1:-1;;;17170:18:1;;;17163:45;17225:19;;30475:83:0;16839:411:1;30475:83:0;30571:26;30583:4;30589:7;30571:11;:26::i;:::-;30387:218;;:::o;62856:409::-;-1:-1:-1;;;;;;;;;;;27421:30:0;27432:4;27438:12;:10;:12::i;27421:30::-;63008:21;63000:57:::1;;;::::0;-1:-1:-1;;;63000:57:0;;17457:2:1;63000:57:0::1;::::0;::::1;17439:21:1::0;17496:2;17476:18;;;17469:30;17535:25;17515:18;;;17508:53;17578:18;;63000:57:0::1;17255:347:1::0;63000:57:0::1;63151:9;63146:112;63166:21:::0;;::::1;63146:112;;;63209:37;63215:10;;63226:1;63215:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;63230:8;63240:1;63209:37;;;;;;;;;;;::::0;:5:::1;:37::i;:::-;63189:3:::0;::::1;::::0;::::1;:::i;:::-;;;;63146:112;;42359:524:::0;42515:16;42576:3;:10;42557:8;:15;:29;42549:83;;;;-1:-1:-1;;;42549:83:0;;18632:2:1;42549:83:0;;;18614:21:1;18671:2;18651:18;;;18644:30;18710:34;18690:18;;;18683:62;-1:-1:-1;;;18761:18:1;;;18754:39;18810:19;;42549:83:0;18430:405:1;42549:83:0;42645:30;42692:8;:15;-1:-1:-1;;;;;42678:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42678:30:0;;42645:63;;42726:9;42721:122;42745:8;:15;42741:1;:19;42721:122;;;42801:30;42811:8;42820:1;42811:11;;;;;;;;:::i;:::-;;;;;;;42824:3;42828:1;42824:6;;;;;;;;:::i;:::-;;;;;;;42801:9;:30::i;:::-;42782:13;42796:1;42782:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;42762:3;;;:::i;:::-;;;42721:122;;;-1:-1:-1;42862:13:0;42359:524;-1:-1:-1;;;42359:524:0:o;61687:253::-;58831:25;27421:30;27432:4;27438:12;:10;:12::i;27421:30::-;61841:24:::1;::::0;;;:15:::1;:24;::::0;;;;:35;;-1:-1:-1;;;;;;61841:35:0::1;-1:-1:-1::0;;;;;61841:35:0;::::1;;::::0;;61887:45:::1;61841:24:::0;:35;61923:8;61887:16:::1;:45::i;58020:353::-:0;58196:12;:10;:12::i;:::-;-1:-1:-1;;;;;58185:23:0;:7;-1:-1:-1;;;;;58185:23:0;;:66;;;;58212:39;58229:7;58238:12;:10;:12::i;58212:39::-;58163:157;;;;-1:-1:-1;;;58163:157:0;;;;;;;:::i;:::-;58333:32;58344:7;58353:3;58358:6;58333:10;:32::i;59033:43::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60452:140::-;-1:-1:-1;;;;;;;;;;;27421:30:0;27432:4;27438:12;:10;:12::i;27421:30::-;60537:13:::1;::::0;60521:30:::1;::::0;;;:15:::1;:30;::::0;;;;;;60513:71;;-1:-1:-1;;;;;60521:30:0;;::::1;::::0;60562:21:::1;60513:71:::0;::::1;;;::::0;60562:21;;60513:71;60521:30;60513:71;60562:21;60521:30;60513:71;::::1;;;;;;;;;;;;;::::0;::::1;;;;59829:615:::0;-1:-1:-1;;;;;;;;;;;27421:30:0;27432:4;27438:12;:10;:12::i;27421:30::-;59993:13:::1;::::0;59977:30:::1;::::0;;;:15:::1;:30;::::0;;;;;;59969:71;;-1:-1:-1;;;;;59977:30:0;;::::1;::::0;60018:21:::1;59969:71:::0;::::1;;;::::0;60018:21;;59969:71;59977:30;59969:71;60018:21;59977:30;59969:71;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;60063:13:0::1;::::0;;60080:5:::1;60049:28:::0;;;:13:::1;:28;::::0;;;;:36;;-1:-1:-1;;60049:36:0::1;::::0;;60094:18;;60049:36;;60063:13;60080:5;60094:18:::1;::::0;60049:36;;60094:18:::1;:::i;:::-;::::0;;;-1:-1:-1;;60131:13:0::1;::::0;60121:24:::1;::::0;;;:9:::1;:24;::::0;;;;;;;:36;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;60182:13:0::1;::::0;;60166:30:::1;::::0;;;:15:::1;:30;::::0;;;;:52;;-1:-1:-1;;;;;;60166:52:0::1;-1:-1:-1::0;;;;;60166:52:0;::::1;;::::0;;60244:13;60227:58:::1;::::0;60166:52;60280:4:::1;60227:16;:58::i;:::-;60294:48;60300:19;60321:13;;60336:1;60294:48;;;;;;;;;;;::::0;:5:::1;:48::i;:::-;60357:10;::::0;60369:13:::1;::::0;60351:41:::1;::::0;;::::1;::::0;::::1;::::0;;;60357:10:::1;60351:41:::0;;::::1;::::0;-1:-1:-1;;;;;60357:10:0::1;::::0;60369:13;60384:3:::1;::::0;60351:5:::1;:41::i;:::-;-1:-1:-1::0;;60415:13:0::1;::::0;60401:28:::1;::::0;;;:13:::1;:28;::::0;;;;:35;;-1:-1:-1;;60401:35:0::1;60432:4;60401:35;::::0;;-1:-1:-1;59829:615:0:o;61151:161::-;-1:-1:-1;;;;;;;;;;;27421:30:0;27432:4;27438:12;:10;:12::i;27421:30::-;-1:-1:-1;61281:23:0::1;::::0;;;:13:::1;:23;::::0;;;;;;-1:-1:-1;;61254:50:0;::::1;61281:23;::::0;;::::1;61280:24;61254:50;::::0;;61151:161::o;27839:139::-;27917:4;27941:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;27941:29:0;;;;;;;;;;;;;;;27839:139::o;42956:155::-;43051:52;43070:12;:10;:12::i;:::-;43084:8;43094;43051:18;:52::i;60991:152::-;-1:-1:-1;;;;;;;;;;;27421:30:0;27432:4;27438:12;:10;:12::i;27421:30::-;61112:23:::1;:11:::0;61127:7:::1;61112:23;:::i;:::-;61096:13;:39:::0;-1:-1:-1;;60991:152:0:o;29731:149::-;29020:7;29047:12;;;:6;:12;;;;;:22;;;27421:30;27432:4;27438:12;:10;:12::i;27421:30::-;29846:26:::1;29858:4;29864:7;29846:11;:26::i;62656:192::-:0;-1:-1:-1;;;;;;;;;;;27421:30:0;27432:4;27438:12;:10;:12::i;27421:30::-;62808:32:::1;62819:2;62823:3;;62808:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;62808:32:0::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;-1:-1:-1;62828:7:0;;-1:-1:-1;62828:7:0;;;;62808:32;::::1;::::0;62828:7;;62808:32;62828:7;62808:32;::::1;;::::0;::::1;::::0;;;-1:-1:-1;62808:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;-1:-1:-1;62808:10:0::1;::::0;-1:-1:-1;;62808:32:0:i:1;:::-;62656:192:::0;;;;;;:::o;64062:462::-;64178:15;-1:-1:-1;;;;;64286:64:0;;64307:42;64286:64;64282:108;;;-1:-1:-1;64374:4:0;64367:11;;64282:108;-1:-1:-1;;;;;43306:27:0;;;43282:4;43306:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;64473:43;64466:50;64062:462;-1:-1:-1;;;64062:462:0:o;43423:401::-;43639:12;:10;:12::i;:::-;-1:-1:-1;;;;;43631:20:0;:4;-1:-1:-1;;;;;43631:20:0;;:60;;;;43655:36;43672:4;43678:12;:10;:12::i;43655:36::-;43609:151;;;;-1:-1:-1;;;43609:151:0;;;;;;;:::i;:::-;43771:45;43789:4;43795:2;43799;43803:6;43811:4;43771:17;:45::i;57691:321::-;57842:12;:10;:12::i;:::-;-1:-1:-1;;;;;57831:23:0;:7;-1:-1:-1;;;;;57831:23:0;;:66;;;;57858:39;57875:7;57884:12;:10;:12::i;57858:39::-;57809:157;;;;-1:-1:-1;;;57809:157:0;;;;;;;:::i;:::-;57979:25;57985:7;57994:2;57998:5;57979;:25::i;515:650::-;586:22;630:10;652:4;630:27;626:508;;;674:18;695:8;;674:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;734:8:0;945:17;939:24;-1:-1:-1;;;;;913:134:0;;-1:-1:-1;626:508:0;;-1:-1:-1;626:508:0;;-1:-1:-1;1111:10:0;626:508;515:650;:::o;27543:204::-;27628:4;-1:-1:-1;;;;;;27652:47:0;;-1:-1:-1;;;27652:47:0;;:87;;;27703:36;27727:11;27703:23;:36::i;64591:113::-;64645:7;64672:24;:22;:24::i;28268:497::-;28349:22;28357:4;28363:7;28349;:22::i;:::-;28344:414;;28537:41;28565:7;-1:-1:-1;;;;;28537:41:0;28575:2;28537:19;:41::i;:::-;28651:38;28679:4;28686:2;28651:19;:38::i;:::-;28442:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;28442:270:0;;;;;;;;;;-1:-1:-1;;;28388:358:0;;;;;;;:::i;47903:88::-;47970:13;;;;:4;;:13;;;;;:::i;23299:327::-;24381:5;-1:-1:-1;;;;;23398:29:0;;;;23390:91;;;;-1:-1:-1;;;23390:91:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23500:22:0;;23492:60;;;;-1:-1:-1;;;23492:60:0;;20794:2:1;23492:60:0;;;20776:21:1;20833:2;20813:18;;;20806:30;20872:27;20852:18;;;20845:55;20917:18;;23492:60:0;20592:349:1;23492:60:0;23587:31;;;;;;;;;-1:-1:-1;;;;;23587:31:0;;;;;;-1:-1:-1;;;;;23587:31:0;;;;;;;;;;-1:-1:-1;;;23565:53:0;;;;:19;:53;23299:327::o;41706:105::-;41766:13;41799:4;41792:11;;;;;:::i;48377:569::-;-1:-1:-1;;;;;48530:16:0;;48522:62;;;;-1:-1:-1;;;48522:62:0;;;;;;;:::i;:::-;48597:16;48616:12;:10;:12::i;:::-;48597:31;;48641:102;48662:8;48680:1;48684:2;48688:21;48706:2;48688:17;:21::i;:::-;48711:25;48729:6;48711:17;:25::i;:::-;48738:4;48641:20;:102::i;:::-;48756:9;:13;;;;;;;;;;;-1:-1:-1;;;;;48756:17:0;;;;;;;;;:27;;48777:6;;48756:9;:27;;48777:6;;48756:27;:::i;:::-;;;;-1:-1:-1;;48799:52:0;;;21522:25:1;;;21578:2;21563:18;;21556:34;;;-1:-1:-1;;;;;48799:52:0;;;;48832:1;;48799:52;;;;;;21495:18:1;48799:52:0;;;;;;;48864:74;48895:8;48913:1;48917:2;48921;48925:6;48933:4;48864:30;:74::i;45985:1074::-;46212:7;:14;46198:3;:10;:28;46190:81;;;;-1:-1:-1;;;46190:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46290:16:0;;46282:66;;;;-1:-1:-1;;;46282:66:0;;;;;;;:::i;:::-;46361:16;46380:12;:10;:12::i;:::-;46361:31;;46405:60;46426:8;46436:4;46442:2;46446:3;46451:7;46460:4;46405:20;:60::i;:::-;46483:9;46478:421;46502:3;:10;46498:1;:14;46478:421;;;46534:10;46547:3;46551:1;46547:6;;;;;;;;:::i;:::-;;;;;;;46534:19;;46568:14;46585:7;46593:1;46585:10;;;;;;;;:::i;:::-;;;;;;;;;;;;46612:19;46634:13;;;;;;;;;;-1:-1:-1;;;;;46634:19:0;;;;;;;;;;;;46585:10;;-1:-1:-1;46676:21:0;;;;46668:76;;;;-1:-1:-1;;;46668:76:0;;;;;;;:::i;:::-;46788:9;:13;;;;;;;;;;;-1:-1:-1;;;;;46788:19:0;;;;;;;;;;46810:20;;;46788:42;;46860:17;;;;;;;:27;;46810:20;;46788:9;46860:27;;46810:20;;46860:27;:::i;:::-;;;;;;;;46519:380;;;46514:3;;;;:::i;:::-;;;46478:421;;;;46946:2;-1:-1:-1;;;;;46916:47:0;46940:4;-1:-1:-1;;;;;46916:47:0;46930:8;-1:-1:-1;;;;;46916:47:0;;46950:3;46955:7;46916:47;;;;;;;:::i;:::-;;;;;;;;46976:75;47012:8;47022:4;47028:2;47032:3;47037:7;47046:4;46976:35;:75::i;31888:238::-;31972:22;31980:4;31986:7;31972;:22::i;:::-;31967:152;;32011:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;32011:29:0;;;;;;;;;:36;;-1:-1:-1;;32011:36:0;32043:4;32011:36;;;32094:12;:10;:12::i;:::-;-1:-1:-1;;;;;32067:40:0;32085:7;-1:-1:-1;;;;;32067:40:0;32079:4;32067:40;;;;;;;;;;31888:238;;:::o;32258:239::-;32342:22;32350:4;32356:7;32342;:22::i;:::-;32338:152;;;32413:5;32381:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;32381:29:0;;;;;;;;;:37;;-1:-1:-1;;32381:37:0;;;32465:12;:10;:12::i;:::-;-1:-1:-1;;;;;32438:40:0;32456:7;-1:-1:-1;;;;;32438:40:0;32450:4;32438:40;;;;;;;;;;32258:239;;:::o;22601:385::-;24381:5;-1:-1:-1;;;;;22749:29:0;;;;22741:91;;;;-1:-1:-1;;;22741:91:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22851:22:0;;22843:62;;;;-1:-1:-1;;;22843:62:0;;23499:2:1;22843:62:0;;;23481:21:1;23538:2;23518:18;;;23511:30;23577:29;23557:18;;;23550:57;23624:18;;22843:62:0;23297:351:1;22843:62:0;22947:31;;;;;;;;-1:-1:-1;;;;;22947:31:0;;;;;-1:-1:-1;;;;;22947:31:0;;;;;;;;;;-1:-1:-1;22918:26:0;;;:17;:26;;;;;;:60;;;;;;;-1:-1:-1;;;22918:60:0;;;;;;22601:385::o;51138:891::-;-1:-1:-1;;;;;51290:18:0;;51282:66;;;;-1:-1:-1;;;51282:66:0;;;;;;;:::i;:::-;51381:7;:14;51367:3;:10;:28;51359:81;;;;-1:-1:-1;;;51359:81:0;;;;;;;:::i;:::-;51453:16;51472:12;:10;:12::i;:::-;51453:31;;51497:66;51518:8;51528:4;51542:1;51546:3;51551:7;51497:66;;;;;;;;;;;;:20;:66::i;:::-;51581:9;51576:373;51600:3;:10;51596:1;:14;51576:373;;;51632:10;51645:3;51649:1;51645:6;;;;;;;;:::i;:::-;;;;;;;51632:19;;51666:14;51683:7;51691:1;51683:10;;;;;;;;:::i;:::-;;;;;;;;;;;;51710:19;51732:13;;;;;;;;;;-1:-1:-1;;;;;51732:19:0;;;;;;;;;;;;51683:10;;-1:-1:-1;51774:21:0;;;;51766:70;;;;-1:-1:-1;;;51766:70:0;;;;;;;:::i;:::-;51880:9;:13;;;;;;;;;;;-1:-1:-1;;;;;51880:19:0;;;;;;;;;;51902:20;;51880:42;;51612:3;;;;:::i;:::-;;;;51576:373;;;;52004:1;-1:-1:-1;;;;;51966:55:0;51990:4;-1:-1:-1;;;;;51966:55:0;51980:8;-1:-1:-1;;;;;51966:55:0;;52008:3;52013:7;51966:55;;;;;;;:::i;:::-;;;;;;;;51271:758;51138:891;;;:::o;52171:331::-;52326:8;-1:-1:-1;;;;;52317:17:0;:5;-1:-1:-1;;;;;52317:17:0;;;52309:71;;;;-1:-1:-1;;;52309:71:0;;24664:2:1;52309:71:0;;;24646:21:1;24703:2;24683:18;;;24676:30;24742:34;24722:18;;;24715:62;-1:-1:-1;;;24793:18:1;;;24786:39;24842:19;;52309:71:0;24462:405:1;52309:71:0;-1:-1:-1;;;;;52391:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;52391:46:0;;;;;;;;;;52453:41;;1159::1;;;52453::0;;1132:18:1;52453:41:0;;;;;;;52171:331;;;:::o;49302:735::-;-1:-1:-1;;;;;49480:16:0;;49472:62;;;;-1:-1:-1;;;49472:62:0;;;;;;;:::i;:::-;49567:7;:14;49553:3;:10;:28;49545:81;;;;-1:-1:-1;;;49545:81:0;;;;;;;:::i;:::-;49639:16;49658:12;:10;:12::i;:::-;49639:31;;49683:66;49704:8;49722:1;49726:2;49730:3;49735:7;49744:4;49683:20;:66::i;:::-;49767:9;49762:103;49786:3;:10;49782:1;:14;49762:103;;;49843:7;49851:1;49843:10;;;;;;;;:::i;:::-;;;;;;;49818:9;:17;49828:3;49832:1;49828:6;;;;;;;;:::i;:::-;;;;;;;49818:17;;;;;;;;;;;:21;49836:2;-1:-1:-1;;;;;49818:21:0;-1:-1:-1;;;;;49818:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;49798:3:0;;-1:-1:-1;49798:3:0;;;:::i;:::-;;;;49762:103;;;;49918:2;-1:-1:-1;;;;;49882:53:0;49914:1;-1:-1:-1;;;;;49882:53:0;49896:8;-1:-1:-1;;;;;49882:53:0;;49922:3;49927:7;49882:53;;;;;;;:::i;:::-;;;;;;;;49948:81;49984:8;50002:1;50006:2;50010:3;50015:7;50024:4;49948:35;:81::i;44807:820::-;-1:-1:-1;;;;;44995:16:0;;44987:66;;;;-1:-1:-1;;;44987:66:0;;;;;;;:::i;:::-;45066:16;45085:12;:10;:12::i;:::-;45066:31;;45110:96;45131:8;45141:4;45147:2;45151:21;45169:2;45151:17;:21::i;45110:96::-;45219:19;45241:13;;;;;;;;;;;-1:-1:-1;;;;;45241:19:0;;;;;;;;;;45279:21;;;;45271:76;;;;-1:-1:-1;;;45271:76:0;;;;;;;:::i;:::-;45383:9;:13;;;;;;;;;;;-1:-1:-1;;;;;45383:19:0;;;;;;;;;;45405:20;;;45383:42;;45447:17;;;;;;;:27;;45405:20;;45383:9;45447:27;;45405:20;;45447:27;:::i;:::-;;;;-1:-1:-1;;45492:46:0;;;21522:25:1;;;21578:2;21563:18;;21556:34;;;-1:-1:-1;;;;;45492:46:0;;;;;;;;;;;;;;21495:18:1;45492:46:0;;;;;;;45551:68;45582:8;45592:4;45598:2;45602;45606:6;45614:4;45551:30;:68::i;:::-;44976:651;;44807:820;;;;;:::o;50287:648::-;-1:-1:-1;;;;;50414:18:0;;50406:66;;;;-1:-1:-1;;;50406:66:0;;;;;;;:::i;:::-;50485:16;50504:12;:10;:12::i;:::-;50485:31;;50529:102;50550:8;50560:4;50574:1;50578:21;50596:2;50578:17;:21::i;:::-;50601:25;50619:6;50601:17;:25::i;:::-;50529:102;;;;;;;;;;;;:20;:102::i;:::-;50644:19;50666:13;;;;;;;;;;;-1:-1:-1;;;;;50666:19:0;;;;;;;;;;50704:21;;;;50696:70;;;;-1:-1:-1;;;50696:70:0;;;;;;;:::i;:::-;50802:9;:13;;;;;;;;;;;-1:-1:-1;;;;;50802:19:0;;;;;;;;;;;;50824:20;;;50802:42;;50873:54;;21522:25:1;;;21563:18;;;21556:34;;;50802:19:0;;50873:54;;;;;;21495:18:1;50873:54:0;;;;;;;50395:540;;50287:648;;;:::o;22062:215::-;22164:4;-1:-1:-1;;;;;;22188:41:0;;-1:-1:-1;;;22188:41:0;;:81;;;22233:36;22257:11;22233:23;:36::i;2836:451::-;2911:13;2937:19;2969:10;2973:6;2969:1;:10;:::i;:::-;:14;;2982:1;2969:14;:::i;:::-;-1:-1:-1;;;;;2959:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2959:25:0;;2937:47;;-1:-1:-1;;;2995:6:0;3002:1;2995:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;2995:15:0;;;;;;;;;-1:-1:-1;;;3021:6:0;3028:1;3021:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;3021:15:0;;;;;;;;-1:-1:-1;3052:9:0;3064:10;3068:6;3064:1;:10;:::i;:::-;:14;;3077:1;3064:14;:::i;:::-;3052:26;;3047:135;3084:1;3080;:5;3047:135;;;-1:-1:-1;;;3132:5:0;3140:3;3132:11;3119:25;;;;;;;:::i;:::-;;;;3107:6;3114:1;3107:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;3107:37:0;;;;;;;;-1:-1:-1;3169:1:0;3159:11;;;;;3087:3;;;:::i;:::-;;;3047:135;;;-1:-1:-1;3200:10:0;;3192:55;;;;-1:-1:-1;;;3192:55:0;;25215:2:1;3192:55:0;;;25197:21:1;;;25234:18;;;25227:30;25293:34;25273:18;;;25266:62;25345:18;;3192:55:0;25013:356:1;55260:198:0;55380:16;;;55394:1;55380:16;;;;;;;;;55326;;55355:22;;55380:16;;;;;;;;;;;;-1:-1:-1;55380:16:0;55355:41;;55418:7;55407:5;55413:1;55407:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;55445:5;55260:198;-1:-1:-1;;55260:198:0:o;63343:291::-;63560:66;63587:8;63597:4;63603:2;63607:3;63612:7;63621:4;63560:26;:66::i;53687:744::-;-1:-1:-1;;;;;53902:13:0;;10901:20;10949:8;53898:526;;53938:72;;-1:-1:-1;;;53938:72:0;;-1:-1:-1;;;;;53938:38:0;;;;;:72;;53977:8;;53987:4;;53993:2;;53997:6;;54005:4;;53938:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53938:72:0;;;;;;;;-1:-1:-1;;53938:72:0;;;;;;;;;;;;:::i;:::-;;;53934:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;54286:6;54279:14;;-1:-1:-1;;;54279:14:0;;;;;;;;:::i;53934:479::-;;;54335:62;;-1:-1:-1;;;54335:62:0;;27256:2:1;54335:62:0;;;27238:21:1;27295:2;27275:18;;;27268:30;27334:34;27314:18;;;27307:62;-1:-1:-1;;;27385:18:1;;;27378:50;27445:19;;54335:62:0;27054:416:1;53934:479:0;-1:-1:-1;;;;;;54060:55:0;;-1:-1:-1;;;54060:55:0;54056:154;;54140:50;;-1:-1:-1;;;54140:50:0;;;;;;;:::i;54439:813::-;-1:-1:-1;;;;;54679:13:0;;10901:20;10949:8;54675:570;;54715:79;;-1:-1:-1;;;54715:79:0;;-1:-1:-1;;;;;54715:43:0;;;;;:79;;54759:8;;54769:4;;54775:3;;54780:7;;54789:4;;54715:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54715:79:0;;;;;;;;-1:-1:-1;;54715:79:0;;;;;;;;;;;;:::i;:::-;;;54711:523;;;;:::i;:::-;-1:-1:-1;;;;;;54876:60:0;;-1:-1:-1;;;54876:60:0;54872:159;;54961:50;;-1:-1:-1;;;54961:50:0;;;;;;;:::i;40985:310::-;41087:4;-1:-1:-1;;;;;;41124:41:0;;-1:-1:-1;;;41124:41:0;;:110;;-1:-1:-1;;;;;;;41182:52:0;;-1:-1:-1;;;41182:52:0;41124:110;:163;;;-1:-1:-1;;;;;;;;;;21005:40:0;;;41251:36;20896:157;56598:655;-1:-1:-1;;;;;56920:18:0;;56916:160;;56960:9;56955:110;56979:3;:10;56975:1;:14;56955:110;;;57039:7;57047:1;57039:10;;;;;;;;:::i;:::-;;;;;;;57015:12;:20;57028:3;57032:1;57028:6;;;;;;;;:::i;:::-;;;;;;;57015:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;56991:3:0;;-1:-1:-1;56991:3:0;;:::i;:::-;;;56955:110;;;;56916:160;-1:-1:-1;;;;;57092:16:0;;57088:158;;57130:9;57125:110;57149:3;:10;57145:1;:14;57125:110;;;57209:7;57217:1;57209:10;;;;;;;;:::i;:::-;;;;;;;57185:12;:20;57198:3;57202:1;57198:6;;;;;;;;:::i;:::-;;;;;;;57185:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;57161:3:0;;-1:-1:-1;57161:3:0;;:::i;:::-;;;57125:110;;-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;687:71;633:131;:::o;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:592::-;1282:6;1290;1343:2;1331:9;1322:7;1318:23;1314:32;1311:52;;;1359:1;1356;1349:12;1311:52;1399:9;1386:23;-1:-1:-1;;;;;1469:2:1;1461:6;1458:14;1455:34;;;1485:1;1482;1475:12;1455:34;1523:6;1512:9;1508:22;1498:32;;1568:7;1561:4;1557:2;1553:13;1549:27;1539:55;;1590:1;1587;1580:12;1539:55;1630:2;1617:16;1656:2;1648:6;1645:14;1642:34;;;1672:1;1669;1662:12;1642:34;1717:7;1712:2;1703:6;1699:2;1695:15;1691:24;1688:37;1685:57;;;1738:1;1735;1728:12;1685:57;1769:2;1761:11;;;;;1791:6;;-1:-1:-1;1211:592:1;;-1:-1:-1;;;;1211:592:1:o;1808:179::-;1875:20;;-1:-1:-1;;;;;1924:38:1;;1914:49;;1904:77;;1977:1;1974;1967:12;1992:258;2059:6;2067;2120:2;2108:9;2099:7;2095:23;2091:32;2088:52;;;2136:1;2133;2126:12;2088:52;2159:29;2178:9;2159:29;:::i;:::-;2149:39;;2207:37;2240:2;2229:9;2225:18;2207:37;:::i;:::-;2197:47;;1992:258;;;;;:::o;2255:::-;2327:1;2337:113;2351:6;2348:1;2345:13;2337:113;;;2427:11;;;2421:18;2408:11;;;2401:39;2373:2;2366:10;2337:113;;;2468:6;2465:1;2462:13;2459:48;;;-1:-1:-1;;2503:1:1;2485:16;;2478:27;2255:258::o;2518:::-;2560:3;2598:5;2592:12;2625:6;2620:3;2613:19;2641:63;2697:6;2690:4;2685:3;2681:14;2674:4;2667:5;2663:16;2641:63;:::i;:::-;2758:2;2737:15;-1:-1:-1;;2733:29:1;2724:39;;;;2765:4;2720:50;;2518:258;-1:-1:-1;;2518:258:1:o;2781:220::-;2930:2;2919:9;2912:21;2893:4;2950:45;2991:2;2980:9;2976:18;2968:6;2950:45;:::i;3006:180::-;3065:6;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;-1:-1:-1;3157:23:1;;3006:180;-1:-1:-1;3006:180:1:o;3191:127::-;3252:10;3247:3;3243:20;3240:1;3233:31;3283:4;3280:1;3273:15;3307:4;3304:1;3297:15;3323:249;3433:2;3414:13;;-1:-1:-1;;3410:27:1;3398:40;;-1:-1:-1;;;;;3453:34:1;;3489:22;;;3450:62;3447:88;;;3515:18;;:::i;:::-;3551:2;3544:22;-1:-1:-1;;3323:249:1:o;3577:556::-;3620:5;3673:3;3666:4;3658:6;3654:17;3650:27;3640:55;;3691:1;3688;3681:12;3640:55;3727:6;3714:20;-1:-1:-1;;;;;3749:2:1;3746:26;3743:52;;;3775:18;;:::i;:::-;3824:2;3818:9;3836:67;3891:2;3872:13;;-1:-1:-1;;3868:27:1;3897:4;3864:38;3818:9;3836:67;:::i;:::-;3927:2;3919:6;3912:18;3973:3;3966:4;3961:2;3953:6;3949:15;3945:26;3942:35;3939:55;;;3990:1;3987;3980:12;3939:55;4054:2;4047:4;4039:6;4035:17;4028:4;4020:6;4016:17;4003:54;4101:1;4077:15;;;4094:4;4073:26;4066:37;;;;4081:6;3577:556;-1:-1:-1;;;3577:556:1:o;4138:390::-;4216:6;4224;4277:2;4265:9;4256:7;4252:23;4248:32;4245:52;;;4293:1;4290;4283:12;4245:52;4329:9;4316:23;4306:33;;4390:2;4379:9;4375:18;4362:32;-1:-1:-1;;;;;4409:6:1;4406:30;4403:50;;;4449:1;4446;4439:12;4403:50;4472;4514:7;4505:6;4494:9;4490:22;4472:50;:::i;:::-;4462:60;;;4138:390;;;;;:::o;4900:248::-;4968:6;4976;5029:2;5017:9;5008:7;5004:23;5000:32;4997:52;;;5045:1;5042;5035:12;4997:52;-1:-1:-1;;5068:23:1;;;5138:2;5123:18;;;5110:32;;-1:-1:-1;4900:248:1:o;5640:183::-;5700:4;-1:-1:-1;;;;;5725:6:1;5722:30;5719:56;;;5755:18;;:::i;:::-;-1:-1:-1;5800:1:1;5796:14;5812:4;5792:25;;5640:183::o;5828:724::-;5882:5;5935:3;5928:4;5920:6;5916:17;5912:27;5902:55;;5953:1;5950;5943:12;5902:55;5989:6;5976:20;6015:4;6038:43;6078:2;6038:43;:::i;:::-;6110:2;6104:9;6122:31;6150:2;6142:6;6122:31;:::i;:::-;6188:18;;;6280:1;6276:10;;;;6264:23;;6260:32;;;6222:15;;;;-1:-1:-1;6304:15:1;;;6301:35;;;6332:1;6329;6322:12;6301:35;6368:2;6360:6;6356:15;6380:142;6396:6;6391:3;6388:15;6380:142;;;6462:17;;6450:30;;6500:12;;;;6413;;6380:142;;;-1:-1:-1;6540:6:1;5828:724;-1:-1:-1;;;;;;5828:724:1:o;6557:944::-;6711:6;6719;6727;6735;6743;6796:3;6784:9;6775:7;6771:23;6767:33;6764:53;;;6813:1;6810;6803:12;6764:53;6836:29;6855:9;6836:29;:::i;:::-;6826:39;;6884:38;6918:2;6907:9;6903:18;6884:38;:::i;:::-;6874:48;;6973:2;6962:9;6958:18;6945:32;-1:-1:-1;;;;;7037:2:1;7029:6;7026:14;7023:34;;;7053:1;7050;7043:12;7023:34;7076:61;7129:7;7120:6;7109:9;7105:22;7076:61;:::i;:::-;7066:71;;7190:2;7179:9;7175:18;7162:32;7146:48;;7219:2;7209:8;7206:16;7203:36;;;7235:1;7232;7225:12;7203:36;7258:63;7313:7;7302:8;7291:9;7287:24;7258:63;:::i;:::-;7248:73;;7374:3;7363:9;7359:19;7346:33;7330:49;;7404:2;7394:8;7391:16;7388:36;;;7420:1;7417;7410:12;7388:36;;7443:52;7487:7;7476:8;7465:9;7461:24;7443:52;:::i;:::-;7433:62;;;6557:944;;;;;;;;:::o;7506:254::-;7574:6;7582;7635:2;7623:9;7614:7;7610:23;7606:32;7603:52;;;7651:1;7648;7641:12;7603:52;7687:9;7674:23;7664:33;;7716:38;7750:2;7739:9;7735:18;7716:38;:::i;7765:367::-;7828:8;7838:6;7892:3;7885:4;7877:6;7873:17;7869:27;7859:55;;7910:1;7907;7900:12;7859:55;-1:-1:-1;7933:20:1;;-1:-1:-1;;;;;7965:30:1;;7962:50;;;8008:1;8005;7998:12;7962:50;8045:4;8037:6;8033:17;8021:29;;8105:3;8098:4;8088:6;8085:1;8081:14;8073:6;8069:27;8065:38;8062:47;8059:67;;;8122:1;8119;8112:12;8137:505;8232:6;8240;8248;8301:2;8289:9;8280:7;8276:23;8272:32;8269:52;;;8317:1;8314;8307:12;8269:52;8357:9;8344:23;-1:-1:-1;;;;;8382:6:1;8379:30;8376:50;;;8422:1;8419;8412:12;8376:50;8461:70;8523:7;8514:6;8503:9;8499:22;8461:70;:::i;:::-;8550:8;;8435:96;;-1:-1:-1;8632:2:1;8617:18;;;;8604:32;;8137:505;-1:-1:-1;;;;8137:505:1:o;8647:1208::-;8765:6;8773;8826:2;8814:9;8805:7;8801:23;8797:32;8794:52;;;8842:1;8839;8832:12;8794:52;8882:9;8869:23;-1:-1:-1;;;;;8952:2:1;8944:6;8941:14;8938:34;;;8968:1;8965;8958:12;8938:34;9006:6;8995:9;8991:22;8981:32;;9051:7;9044:4;9040:2;9036:13;9032:27;9022:55;;9073:1;9070;9063:12;9022:55;9109:2;9096:16;9131:4;9154:43;9194:2;9154:43;:::i;:::-;9226:2;9220:9;9238:31;9266:2;9258:6;9238:31;:::i;:::-;9304:18;;;9392:1;9388:10;;;;9380:19;;9376:28;;;9338:15;;;;-1:-1:-1;9416:19:1;;;9413:39;;;9448:1;9445;9438:12;9413:39;9472:11;;;;9492:148;9508:6;9503:3;9500:15;9492:148;;;9574:23;9593:3;9574:23;:::i;:::-;9562:36;;9525:12;;;;9618;;;;9492:148;;;9659:6;-1:-1:-1;;9703:18:1;;9690:32;;-1:-1:-1;;9734:16:1;;;9731:36;;;9763:1;9760;9753:12;9731:36;;9786:63;9841:7;9830:8;9819:9;9815:24;9786:63;:::i;9860:435::-;9913:3;9951:5;9945:12;9978:6;9973:3;9966:19;10004:4;10033:2;10028:3;10024:12;10017:19;;10070:2;10063:5;10059:14;10091:1;10101:169;10115:6;10112:1;10109:13;10101:169;;;10176:13;;10164:26;;10210:12;;;;10245:15;;;;10137:1;10130:9;10101:169;;;-1:-1:-1;10286:3:1;;9860:435;-1:-1:-1;;;;;9860:435:1:o;10300:261::-;10479:2;10468:9;10461:21;10442:4;10499:56;10551:2;10540:9;10536:18;10528:6;10499:56;:::i;10566:326::-;10642:6;10650;10658;10711:2;10699:9;10690:7;10686:23;10682:32;10679:52;;;10727:1;10724;10717:12;10679:52;10763:9;10750:23;10740:33;;10792:38;10826:2;10815:9;10811:18;10792:38;:::i;:::-;10782:48;;10849:37;10882:2;10871:9;10867:18;10849:37;:::i;:::-;10839:47;;10566:326;;;;;:::o;10897:669::-;11024:6;11032;11040;11093:2;11081:9;11072:7;11068:23;11064:32;11061:52;;;11109:1;11106;11099:12;11061:52;11132:29;11151:9;11132:29;:::i;:::-;11122:39;;11212:2;11201:9;11197:18;11184:32;-1:-1:-1;;;;;11276:2:1;11268:6;11265:14;11262:34;;;11292:1;11289;11282:12;11262:34;11315:61;11368:7;11359:6;11348:9;11344:22;11315:61;:::i;:::-;11305:71;;11429:2;11418:9;11414:18;11401:32;11385:48;;11458:2;11448:8;11445:16;11442:36;;;11474:1;11471;11464:12;11442:36;;11497:63;11552:7;11541:8;11530:9;11526:24;11497:63;:::i;:::-;11487:73;;;10897:669;;;;;:::o;11571:396::-;11649:6;11657;11710:2;11698:9;11689:7;11685:23;11681:32;11678:52;;;11726:1;11723;11716:12;11678:52;11766:9;11753:23;-1:-1:-1;;;;;11791:6:1;11788:30;11785:50;;;11831:1;11828;11821:12;11785:50;11854;11896:7;11887:6;11876:9;11872:22;11854:50;:::i;:::-;11844:60;;;11923:38;11957:2;11946:9;11942:18;11923:38;:::i;11972:347::-;12037:6;12045;12098:2;12086:9;12077:7;12073:23;12069:32;12066:52;;;12114:1;12111;12104:12;12066:52;12137:29;12156:9;12137:29;:::i;:::-;12127:39;;12216:2;12205:9;12201:18;12188:32;12263:5;12256:13;12249:21;12242:5;12239:32;12229:60;;12285:1;12282;12275:12;12229:60;12308:5;12298:15;;;11972:347;;;;;:::o;12324:847::-;12455:6;12463;12471;12479;12487;12540:2;12528:9;12519:7;12515:23;12511:32;12508:52;;;12556:1;12553;12546:12;12508:52;12579:29;12598:9;12579:29;:::i;:::-;12569:39;;12659:2;12648:9;12644:18;12631:32;-1:-1:-1;;;;;12723:2:1;12715:6;12712:14;12709:34;;;12739:1;12736;12729:12;12709:34;12778:70;12840:7;12831:6;12820:9;12816:22;12778:70;:::i;:::-;12867:8;;-1:-1:-1;12752:96:1;-1:-1:-1;12955:2:1;12940:18;;12927:32;;-1:-1:-1;12971:16:1;;;12968:36;;;13000:1;12997;12990:12;12968:36;;13039:72;13103:7;13092:8;13081:9;13077:24;13039:72;:::i;:::-;12324:847;;;;-1:-1:-1;12324:847:1;;-1:-1:-1;13130:8:1;;13013:98;12324:847;-1:-1:-1;;;12324:847:1:o;13176:260::-;13244:6;13252;13305:2;13293:9;13284:7;13280:23;13276:32;13273:52;;;13321:1;13318;13311:12;13273:52;13344:29;13363:9;13344:29;:::i;:::-;13334:39;;13392:38;13426:2;13415:9;13411:18;13392:38;:::i;13441:607::-;13545:6;13553;13561;13569;13577;13630:3;13618:9;13609:7;13605:23;13601:33;13598:53;;;13647:1;13644;13637:12;13598:53;13670:29;13689:9;13670:29;:::i;:::-;13660:39;;13718:38;13752:2;13741:9;13737:18;13718:38;:::i;:::-;13708:48;;13803:2;13792:9;13788:18;13775:32;13765:42;;13854:2;13843:9;13839:18;13826:32;13816:42;;13909:3;13898:9;13894:19;13881:33;-1:-1:-1;;;;;13929:6:1;13926:30;13923:50;;;13969:1;13966;13959:12;13923:50;13992;14034:7;14025:6;14014:9;14010:22;13992:50;:::i;14053:322::-;14130:6;14138;14146;14199:2;14187:9;14178:7;14174:23;14170:32;14167:52;;;14215:1;14212;14205:12;14167:52;14238:29;14257:9;14238:29;:::i;:::-;14228:39;14314:2;14299:18;;14286:32;;-1:-1:-1;14365:2:1;14350:18;;;14337:32;;14053:322;-1:-1:-1;;;14053:322:1:o;14792:380::-;14871:1;14867:12;;;;14914;;;14935:61;;14989:4;14981:6;14977:17;14967:27;;14935:61;15042:2;15034:6;15031:14;15011:18;15008:38;15005:161;;;15088:10;15083:3;15079:20;15076:1;15069:31;15123:4;15120:1;15113:15;15151:4;15148:1;15141:15;15005:161;;14792:380;;;:::o;15893:127::-;15954:10;15949:3;15945:20;15942:1;15935:31;15985:4;15982:1;15975:15;16009:4;16006:1;15999:15;16025:168;16065:7;16131:1;16127;16123:6;16119:14;16116:1;16113:21;16108:1;16101:9;16094:17;16090:45;16087:71;;;16138:18;;:::i;:::-;-1:-1:-1;16178:9:1;;16025:168::o;16198:217::-;16238:1;16264;16254:132;;16308:10;16303:3;16299:20;16296:1;16289:31;16343:4;16340:1;16333:15;16371:4;16368:1;16361:15;16254:132;-1:-1:-1;16400:9:1;;16198:217::o;17967:127::-;18028:10;18023:3;18019:20;18016:1;18009:31;18059:4;18056:1;18049:15;18083:4;18080:1;18073:15;18099:186;18158:6;18211:2;18199:9;18190:7;18186:23;18182:32;18179:52;;;18227:1;18224;18217:12;18179:52;18250:29;18269:9;18250:29;:::i;18290:135::-;18329:3;-1:-1:-1;;18350:17:1;;18347:43;;;18370:18;;:::i;:::-;-1:-1:-1;18417:1:1;18406:13;;18290:135::o;18840:405::-;19042:2;19024:21;;;19081:2;19061:18;;;19054:30;19120:34;19115:2;19100:18;;19093:62;-1:-1:-1;;;19186:2:1;19171:18;;19164:39;19235:3;19220:19;;18840:405::o;19250:128::-;19290:3;19321:1;19317:6;19314:1;19311:13;19308:39;;;19327:18;;:::i;:::-;-1:-1:-1;19363:9:1;;19250:128::o;19383:786::-;19794:25;19789:3;19782:38;19764:3;19849:6;19843:13;19865:62;19920:6;19915:2;19910:3;19906:12;19899:4;19891:6;19887:17;19865:62;:::i;:::-;-1:-1:-1;;;19986:2:1;19946:16;;;19978:11;;;19971:40;20036:13;;20058:63;20036:13;20107:2;20099:11;;20092:4;20080:17;;20058:63;:::i;:::-;20141:17;20160:2;20137:26;;19383:786;-1:-1:-1;;;;19383:786:1:o;20174:413::-;20376:2;20358:21;;;20415:2;20395:18;;;20388:30;20454:34;20449:2;20434:18;;20427:62;-1:-1:-1;;;20520:2:1;20505:18;;20498:47;20577:3;20562:19;;20174:413::o;20946:397::-;21148:2;21130:21;;;21187:2;21167:18;;;21160:30;21226:34;21221:2;21206:18;;21199:62;-1:-1:-1;;;21292:2:1;21277:18;;21270:31;21333:3;21318:19;;20946:397::o;21601:404::-;21803:2;21785:21;;;21842:2;21822:18;;;21815:30;21881:34;21876:2;21861:18;;21854:62;-1:-1:-1;;;21947:2:1;21932:18;;21925:38;21995:3;21980:19;;21601:404::o;22010:401::-;22212:2;22194:21;;;22251:2;22231:18;;;22224:30;22290:34;22285:2;22270:18;;22263:62;-1:-1:-1;;;22356:2:1;22341:18;;22334:35;22401:3;22386:19;;22010:401::o;22416:406::-;22618:2;22600:21;;;22657:2;22637:18;;;22630:30;22696:34;22691:2;22676:18;;22669:62;-1:-1:-1;;;22762:2:1;22747:18;;22740:40;22812:3;22797:19;;22416:406::o;22827:465::-;23084:2;23073:9;23066:21;23047:4;23110:56;23162:2;23151:9;23147:18;23139:6;23110:56;:::i;:::-;23214:9;23206:6;23202:22;23197:2;23186:9;23182:18;23175:50;23242:44;23279:6;23271;23242:44;:::i;:::-;23234:52;22827:465;-1:-1:-1;;;;;22827:465:1:o;23653:399::-;23855:2;23837:21;;;23894:2;23874:18;;;23867:30;23933:34;23928:2;23913:18;;23906:62;-1:-1:-1;;;23999:2:1;23984:18;;23977:33;24042:3;24027:19;;23653:399::o;24057:400::-;24259:2;24241:21;;;24298:2;24278:18;;;24271:30;24337:34;24332:2;24317:18;;24310:62;-1:-1:-1;;;24403:2:1;24388:18;;24381:34;24447:3;24432:19;;24057:400::o;24872:136::-;24911:3;24939:5;24929:39;;24948:18;;:::i;:::-;-1:-1:-1;;;24984:18:1;;24872:136::o;25374:561::-;-1:-1:-1;;;;;25671:15:1;;;25653:34;;25723:15;;25718:2;25703:18;;25696:43;25770:2;25755:18;;25748:34;;;25813:2;25798:18;;25791:34;;;25633:3;25856;25841:19;;25834:32;;;25596:4;;25883:46;;25909:19;;25901:6;25883:46;:::i;:::-;25875:54;25374:561;-1:-1:-1;;;;;;;25374:561:1:o;25940:249::-;26009:6;26062:2;26050:9;26041:7;26037:23;26033:32;26030:52;;;26078:1;26075;26068:12;26030:52;26110:9;26104:16;26129:30;26153:5;26129:30;:::i;26194:179::-;26229:3;26271:1;26253:16;26250:23;26247:120;;;26317:1;26314;26311;26296:23;-1:-1:-1;26354:1:1;26348:8;26343:3;26339:18;26194:179;:::o;26378:671::-;26417:3;26459:4;26441:16;26438:26;26435:39;;;26378:671;:::o;26435:39::-;26501:2;26495:9;-1:-1:-1;;26566:16:1;26562:25;;26559:1;26495:9;26538:50;26617:4;26611:11;26641:16;-1:-1:-1;;;;;26747:2:1;26740:4;26732:6;26728:17;26725:25;26720:2;26712:6;26709:14;26706:45;26703:58;;;26754:5;;;;;26378:671;:::o;26703:58::-;26791:6;26785:4;26781:17;26770:28;;26827:3;26821:10;26854:2;26846:6;26843:14;26840:27;;;26860:5;;;;;;26378:671;:::o;26840:27::-;26944:2;26925:16;26919:4;26915:27;26911:36;26904:4;26895:6;26890:3;26886:16;26882:27;26879:69;26876:82;;;26951:5;;;;;;26378:671;:::o;26876:82::-;26967:57;27018:4;27009:6;27001;26997:19;26993:30;26987:4;26967:57;:::i;:::-;-1:-1:-1;27040:3:1;;26378:671;-1:-1:-1;;;;;26378:671:1:o;27475:404::-;27677:2;27659:21;;;27716:2;27696:18;;;27689:30;27755:34;27750:2;27735:18;;27728:62;-1:-1:-1;;;27821:2:1;27806:18;;27799:38;27869:3;27854:19;;27475:404::o;27884:827::-;-1:-1:-1;;;;;28281:15:1;;;28263:34;;28333:15;;28328:2;28313:18;;28306:43;28243:3;28380:2;28365:18;;28358:31;;;28206:4;;28412:57;;28449:19;;28441:6;28412:57;:::i;:::-;28517:9;28509:6;28505:22;28500:2;28489:9;28485:18;28478:50;28551:44;28588:6;28580;28551:44;:::i;:::-;28537:58;;28644:9;28636:6;28632:22;28626:3;28615:9;28611:19;28604:51;28672:33;28698:6;28690;28672:33;:::i;:::-;28664:41;27884:827;-1:-1:-1;;;;;;;;27884:827:1:o;28716:125::-;28756:4;28784:1;28781;28778:8;28775:34;;;28789:18;;:::i;:::-;-1:-1:-1;28826:9:1;;28716:125::o

Swarm Source

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