ETH Price: $3,455.34 (-0.73%)
Gas: 9 Gwei

Token

Fias (FIAS)
 

Overview

Max Total Supply

200,000,000 FIAS

Holders

1,474

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Fias

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-23
*/

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.20;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```solidity
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 *
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Storage of the initializable contract.
     *
     * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions
     * when using with upgradeable contracts.
     *
     * @custom:storage-location erc7201:openzeppelin.storage.Initializable
     */
    struct InitializableStorage {
        /**
         * @dev Indicates that the contract has been initialized.
         */
        uint64 _initialized;
        /**
         * @dev Indicates that the contract is in the process of being initialized.
         */
        bool _initializing;
    }

    // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;

    /**
     * @dev The contract is already initialized.
     */
    error InvalidInitialization();

    /**
     * @dev The contract is not initializing.
     */
    error NotInitializing();

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint64 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any
     * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in
     * production.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        // Cache values to avoid duplicated sloads
        bool isTopLevelCall = !$._initializing;
        uint64 initialized = $._initialized;

        // Allowed calls:
        // - initialSetup: the contract is not in the initializing state and no previous version was
        //                 initialized
        // - construction: the contract is initialized at version 1 (no reininitialization) and the
        //                 current contract is just being deployed
        bool initialSetup = initialized == 0 && isTopLevelCall;
        bool construction = initialized == 1 && address(this).code.length == 0;

        if (!initialSetup && !construction) {
            revert InvalidInitialization();
        }
        $._initialized = 1;
        if (isTopLevelCall) {
            $._initializing = true;
        }
        _;
        if (isTopLevelCall) {
            $._initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint64 version) {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        if ($._initializing || $._initialized >= version) {
            revert InvalidInitialization();
        }
        $._initialized = version;
        $._initializing = true;
        _;
        $._initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        _checkInitializing();
        _;
    }

    /**
     * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.
     */
    function _checkInitializing() internal view virtual {
        if (!_isInitializing()) {
            revert NotInitializing();
        }
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        if ($._initializing) {
            revert InvalidInitialization();
        }
        if ($._initialized != type(uint64).max) {
            $._initialized = type(uint64).max;
            emit Initialized(type(uint64).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint64) {
        return _getInitializableStorage()._initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _getInitializableStorage()._initializing;
    }

    /**
     * @dev Returns a pointer to the storage namespace.
     */
    // solhint-disable-next-line var-name-mixedcase
    function _getInitializableStorage() private pure returns (InitializableStorage storage $) {
        assembly {
            $.slot := INITIALIZABLE_STORAGE
        }
    }
}

// File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;


/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;






/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20, IERC20Metadata, IERC20Errors {
    /// @custom:storage-location erc7201:openzeppelin.storage.ERC20
    struct ERC20Storage {
        mapping(address account => uint256) _balances;

        mapping(address account => mapping(address spender => uint256)) _allowances;

        uint256 _totalSupply;

        string _name;
        string _symbol;
    }

    // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ERC20")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant ERC20StorageLocation = 0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00;

    function _getERC20Storage() private pure returns (ERC20Storage storage $) {
        assembly {
            $.slot := ERC20StorageLocation
        }
    }

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing {
        __ERC20_init_unchained(name_, symbol_);
    }

    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
        ERC20Storage storage $ = _getERC20Storage();
        $._name = name_;
        $._symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        ERC20Storage storage $ = _getERC20Storage();
        return $._name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        ERC20Storage storage $ = _getERC20Storage();
        return $._symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        ERC20Storage storage $ = _getERC20Storage();
        return $._totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        ERC20Storage storage $ = _getERC20Storage();
        return $._balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        ERC20Storage storage $ = _getERC20Storage();
        return $._allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        ERC20Storage storage $ = _getERC20Storage();
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            $._totalSupply += value;
        } else {
            uint256 fromBalance = $._balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                $._balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                $._totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                $._balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        ERC20Storage storage $ = _getERC20Storage();
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        $._allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// File: contracts/Fias.sol


pragma solidity 0.8.25;



contract Fias is ERC20Upgradeable {
    mapping(address => uint256) internal _minterLimit;
    mapping(address => uint256) internal _mintedAmount;
    mapping(address => bool) internal _explicitMinter;
    //Limit constants are integers (multplied by 10^18 in the mint() function)
    uint256 public constant GLOBAL_LIMIT = 350000000;
    address public constant FOREVVER_MINTER = 0xC3b48A2a0995499DCa3A77001B53337b289E85EB;
    uint256 public constant FOREVVER_LIMIT = 175000000;
    address public constant LITCRAFT_MINTER = 0x80489c4d8dEdEfB102CFD2421083373d8027763b;
    uint256 public constant LITCRAFT_LIMIT = 175000000;
    address public constant CONTRACT_ADMIN = 0x4B5F0ba242AB6ef0De44bFFdEe2646f80E896052;

    function initialize() public initializer {
        __ERC20_init("Fias", "FIAS");
        _explicitMinter[LITCRAFT_MINTER] = true;
        _explicitMinter[FOREVVER_MINTER] = true;
        _minterLimit[LITCRAFT_MINTER] = LITCRAFT_LIMIT;
        _minterLimit[FOREVVER_MINTER] = FOREVVER_LIMIT;
        _mintedAmount[LITCRAFT_MINTER] = 0;
        _mintedAmount[FOREVVER_MINTER] = 0;
    }

    function multiTransfer(address[] memory recipients, uint256[] memory amounts) public {
        require(recipients.length > 0, "No recipients listed.");
        require(recipients.length == amounts.length, "Amount and recipient lengths do not match.");
        uint256 totalAmount = 0;
        for (uint256 i = 0; i < recipients.length; i++) {
            require(amounts[i] > 0, "Every amount must be positive.");
            totalAmount += amounts[i];
        }
        require(totalAmount <= balanceOf(msg.sender), "Sender does not have enough Fias tokens.");
        for (uint256 i = 0; i < recipients.length; i++) {
            this.transferFrom(msg.sender, recipients[i], amounts[i]);
        }
    }

    function multiMint(address[] memory recipients, uint256[] memory amounts) public {
        require(_explicitMinter[msg.sender], "Caller does not have the minter role");
        require(recipients.length > 0, "No mint recipients.");
        require(recipients.length == amounts.length, "Recipient/Amount mismatch.");
        for (uint256 i = 0; i < recipients.length; i++) {
            mint(recipients[i], amounts[i]);
        }
    }

    function mint(address to, uint256 amount) public {
        require(to != address(0), "Mint to the zero address");
        require(_explicitMinter[msg.sender], "Caller does not have the minter role");
        require(amount > 0, "Invalid amount (zero or less).");
        require(totalSupply() + amount <= GLOBAL_LIMIT*(10**18), "Minting this amount would exceed the global limit");
        require(_mintedAmount[msg.sender] + amount <= _minterLimit[msg.sender]*(10**18), "Mint amount exceeds the caller's minting limit");

        _mintedAmount[msg.sender] += amount;
        _mint(to, amount);
    }

    function getMinterLimit(address minter) external view returns (uint256) {
        return _minterLimit[minter]*(10**18);
    }

    function getMintedAmountBy(address minter) external view returns (uint256) {
        return _mintedAmount[minter];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_ADMIN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FOREVVER_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FOREVVER_MINTER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GLOBAL_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LITCRAFT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LITCRAFT_MINTER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"getMintedAmountBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"getMinterLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"multiMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6080604052348015600e575f80fd5b506129048061001c5f395ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c80638129fc1c116100b657806395d89b411161007a57806395d89b41146103295780639afcd33614610347578063a9059cbb14610377578063cc9338a3146103a7578063dd62ed3e146103c5578063f64bdbc0146103f557610135565b80638129fc1c1461029557806383ba6b591461029f5780638ad9403f146102cf5780638dae9318146102ed5780638fc590141461030b57610135565b806323b872dd116100fd57806323b872dd146101df5780632f81bc711461020f578063313ce5671461022b57806340c10f191461024957806370a082311461026557610135565b806306fdde0314610139578063095ea7b314610157578063178bc9d51461018757806318160ddd146101a55780631e89d545146101c3575b5f80fd5b610141610413565b60405161014e91906119fb565b60405180910390f35b610171600480360381019061016c9190611ab9565b6104b1565b60405161017e9190611b11565b60405180910390f35b61018f6104d3565b60405161019c9190611b39565b60405180910390f35b6101ad6104eb565b6040516101ba9190611b61565b60405180910390f35b6101dd60048036038101906101d89190611d7a565b610502565b005b6101f960048036038101906101f49190611df0565b610742565b6040516102069190611b11565b60405180910390f35b61022960048036038101906102249190611d7a565b610770565b005b6102336108db565b6040516102409190611e5b565b60405180910390f35b610263600480360381019061025e9190611ab9565b6108e3565b005b61027f600480360381019061027a9190611e74565b610bc3565b60405161028c9190611b61565b60405180910390f35b61029d610c16565b005b6102b960048036038101906102b49190611e74565b611031565b6040516102c69190611b61565b60405180910390f35b6102d7611089565b6040516102e49190611b61565b60405180910390f35b6102f5611091565b6040516103029190611b61565b60405180910390f35b610313611099565b6040516103209190611b39565b60405180910390f35b6103316110b1565b60405161033e91906119fb565b60405180910390f35b610361600480360381019061035c9190611e74565b61114f565b60405161036e9190611b61565b60405180910390f35b610391600480360381019061038c9190611ab9565b611195565b60405161039e9190611b11565b60405180910390f35b6103af6111b7565b6040516103bc9190611b39565b60405180910390f35b6103df60048036038101906103da9190611e9f565b6111cf565b6040516103ec9190611b61565b60405180910390f35b6103fd61125f565b60405161040a9190611b61565b60405180910390f35b60605f61041e611267565b905080600301805461042f90611f0a565b80601f016020809104026020016040519081016040528092919081815260200182805461045b90611f0a565b80156104a65780601f1061047d576101008083540402835291602001916104a6565b820191905f5260205f20905b81548152906001019060200180831161048957829003601f168201915b505050505091505090565b5f806104bb61128e565b90506104c8818585611295565b600191505092915050565b73c3b48a2a0995499dca3a77001b53337b289e85eb81565b5f806104f5611267565b9050806002015491505090565b5f825111610545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053c90611f84565b60405180910390fd5b8051825114610589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058090612012565b60405180910390fd5b5f805b8351811015610626575f8382815181106105a9576105a8612030565b5b6020026020010151116105f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e8906120a7565b60405180910390fd5b82818151811061060457610603612030565b5b60200260200101518261061791906120f2565b9150808060010191505061058c565b5061063033610bc3565b811115610672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066990612195565b60405180910390fd5b5f5b835181101561073c573073ffffffffffffffffffffffffffffffffffffffff166323b872dd338684815181106106ad576106ac612030565b5b60200260200101518685815181106106c8576106c7612030565b5b60200260200101516040518463ffffffff1660e01b81526004016106ee939291906121b3565b6020604051808303815f875af115801561070a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061072e9190612212565b508080600101915050610674565b50505050565b5f8061074c61128e565b90506107598582856112a7565b610764858585611339565b60019150509392505050565b60025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166107f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f0906122ad565b60405180910390fd5b5f82511161083c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083390612315565b60405180910390fd5b8051825114610880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108779061237d565b60405180910390fd5b5f5b82518110156108d6576108c98382815181106108a1576108a0612030565b5b60200260200101518383815181106108bc576108bb612030565b5b60200260200101516108e3565b8080600101915050610882565b505050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610948906123e5565b60405180910390fd5b60025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d1906122ad565b60405180910390fd5b5f8111610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a139061244d565b60405180910390fd5b670de0b6b3a76400006314dc9380610a34919061246b565b81610a3d6104eb565b610a4791906120f2565b1115610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f9061251c565b60405180910390fd5b670de0b6b3a76400005f803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610ad8919061246b565b8160015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610b2191906120f2565b1115610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b59906125aa565b60405180910390fd5b8060015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610bae91906120f2565b92505081905550610bbf8282611429565b5050565b5f80610bcd611267565b9050805f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054915050919050565b5f610c1f6114a8565b90505f815f0160089054906101000a900460ff161590505f825f015f9054906101000a900467ffffffffffffffff1690505f808267ffffffffffffffff16148015610c675750825b90505f60018367ffffffffffffffff16148015610c9a57505f3073ffffffffffffffffffffffffffffffffffffffff163b145b905081158015610ca8575080155b15610cdf576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001855f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508315610d2c576001855f0160086101000a81548160ff0219169083151502179055505b610da06040518060400160405280600481526020017f46696173000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46494153000000000000000000000000000000000000000000000000000000008152506114cf565b600160025f7380489c4d8dedefb102cfd2421083373d8027763b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160025f73c3b48a2a0995499dca3a77001b53337b289e85eb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550630a6e49c05f807380489c4d8dedefb102cfd2421083373d8027763b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550630a6e49c05f8073c3b48a2a0995499dca3a77001b53337b289e85eb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f60015f7380489c4d8dedefb102cfd2421083373d8027763b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f60015f73c3b48a2a0995499dca3a77001b53337b289e85eb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550831561102a575f855f0160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d26001604051611021919061261d565b60405180910390a15b5050505050565b5f670de0b6b3a76400005f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611082919061246b565b9050919050565b630a6e49c081565b6314dc938081565b734b5f0ba242ab6ef0de44bffdee2646f80e89605281565b60605f6110bc611267565b90508060040180546110cd90611f0a565b80601f01602080910402602001604051908101604052809291908181526020018280546110f990611f0a565b80156111445780601f1061111b57610100808354040283529160200191611144565b820191905f5260205f20905b81548152906001019060200180831161112757829003601f168201915b505050505091505090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f8061119f61128e565b90506111ac818585611339565b600191505092915050565b7380489c4d8dedefb102cfd2421083373d8027763b81565b5f806111d9611267565b9050806001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205491505092915050565b630a6e49c081565b5f7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00905090565b5f33905090565b6112a283838360016114e5565b505050565b5f6112b284846111cf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113335781811015611324578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161131b93929190612636565b60405180910390fd5b61133284848484035f6114e5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113a9575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113a09190611b39565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611419575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016114109190611b39565b60405180910390fd5b6114248383836116c2565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611499575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016114909190611b39565b60405180910390fd5b6114a45f83836116c2565b5050565b5f7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b6114d76118f1565b6114e18282611931565b5050565b5f6114ee611267565b90505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611560575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016115579190611b39565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115d0575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115c79190611b39565b60405180910390fd5b82816001015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555081156116bb578373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516116b29190611b61565b60405180910390a35b5050505050565b5f6116cb611267565b90505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361171f5781816002015f82825461171391906120f2565b925050819055506117f1565b5f815f015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156117aa578481846040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016117a193929190612636565b60405180910390fd5b828103825f015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361183a5781816002015f8282540392505081905550611886565b81815f015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118e39190611b61565b60405180910390a350505050565b6118f961196d565b61192f576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6119396118f1565b5f611942611267565b90508281600301908161195591906127ff565b508181600401908161196791906127ff565b50505050565b5f6119766114a8565b5f0160089054906101000a900460ff16905090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6119cd8261198b565b6119d78185611995565b93506119e78185602086016119a5565b6119f0816119b3565b840191505092915050565b5f6020820190508181035f830152611a1381846119c3565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611a5582611a2c565b9050919050565b611a6581611a4b565b8114611a6f575f80fd5b50565b5f81359050611a8081611a5c565b92915050565b5f819050919050565b611a9881611a86565b8114611aa2575f80fd5b50565b5f81359050611ab381611a8f565b92915050565b5f8060408385031215611acf57611ace611a24565b5b5f611adc85828601611a72565b9250506020611aed85828601611aa5565b9150509250929050565b5f8115159050919050565b611b0b81611af7565b82525050565b5f602082019050611b245f830184611b02565b92915050565b611b3381611a4b565b82525050565b5f602082019050611b4c5f830184611b2a565b92915050565b611b5b81611a86565b82525050565b5f602082019050611b745f830184611b52565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611bb4826119b3565b810181811067ffffffffffffffff82111715611bd357611bd2611b7e565b5b80604052505050565b5f611be5611a1b565b9050611bf18282611bab565b919050565b5f67ffffffffffffffff821115611c1057611c0f611b7e565b5b602082029050602081019050919050565b5f80fd5b5f611c37611c3284611bf6565b611bdc565b90508083825260208201905060208402830185811115611c5a57611c59611c21565b5b835b81811015611c835780611c6f8882611a72565b845260208401935050602081019050611c5c565b5050509392505050565b5f82601f830112611ca157611ca0611b7a565b5b8135611cb1848260208601611c25565b91505092915050565b5f67ffffffffffffffff821115611cd457611cd3611b7e565b5b602082029050602081019050919050565b5f611cf7611cf284611cba565b611bdc565b90508083825260208201905060208402830185811115611d1a57611d19611c21565b5b835b81811015611d435780611d2f8882611aa5565b845260208401935050602081019050611d1c565b5050509392505050565b5f82601f830112611d6157611d60611b7a565b5b8135611d71848260208601611ce5565b91505092915050565b5f8060408385031215611d9057611d8f611a24565b5b5f83013567ffffffffffffffff811115611dad57611dac611a28565b5b611db985828601611c8d565b925050602083013567ffffffffffffffff811115611dda57611dd9611a28565b5b611de685828601611d4d565b9150509250929050565b5f805f60608486031215611e0757611e06611a24565b5b5f611e1486828701611a72565b9350506020611e2586828701611a72565b9250506040611e3686828701611aa5565b9150509250925092565b5f60ff82169050919050565b611e5581611e40565b82525050565b5f602082019050611e6e5f830184611e4c565b92915050565b5f60208284031215611e8957611e88611a24565b5b5f611e9684828501611a72565b91505092915050565b5f8060408385031215611eb557611eb4611a24565b5b5f611ec285828601611a72565b9250506020611ed385828601611a72565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f2157607f821691505b602082108103611f3457611f33611edd565b5b50919050565b7f4e6f20726563697069656e7473206c69737465642e00000000000000000000005f82015250565b5f611f6e601583611995565b9150611f7982611f3a565b602082019050919050565b5f6020820190508181035f830152611f9b81611f62565b9050919050565b7f416d6f756e7420616e6420726563697069656e74206c656e6774687320646f205f8201527f6e6f74206d617463682e00000000000000000000000000000000000000000000602082015250565b5f611ffc602a83611995565b915061200782611fa2565b604082019050919050565b5f6020820190508181035f83015261202981611ff0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f457665727920616d6f756e74206d75737420626520706f7369746976652e00005f82015250565b5f612091601e83611995565b915061209c8261205d565b602082019050919050565b5f6020820190508181035f8301526120be81612085565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6120fc82611a86565b915061210783611a86565b925082820190508082111561211f5761211e6120c5565b5b92915050565b7f53656e64657220646f6573206e6f74206861766520656e6f75676820466961735f8201527f20746f6b656e732e000000000000000000000000000000000000000000000000602082015250565b5f61217f602883611995565b915061218a82612125565b604082019050919050565b5f6020820190508181035f8301526121ac81612173565b9050919050565b5f6060820190506121c65f830186611b2a565b6121d36020830185611b2a565b6121e06040830184611b52565b949350505050565b6121f181611af7565b81146121fb575f80fd5b50565b5f8151905061220c816121e8565b92915050565b5f6020828403121561222757612226611a24565b5b5f612234848285016121fe565b91505092915050565b7f43616c6c657220646f6573206e6f74206861766520746865206d696e746572205f8201527f726f6c6500000000000000000000000000000000000000000000000000000000602082015250565b5f612297602483611995565b91506122a28261223d565b604082019050919050565b5f6020820190508181035f8301526122c48161228b565b9050919050565b7f4e6f206d696e7420726563697069656e74732e000000000000000000000000005f82015250565b5f6122ff601383611995565b915061230a826122cb565b602082019050919050565b5f6020820190508181035f83015261232c816122f3565b9050919050565b7f526563697069656e742f416d6f756e74206d69736d617463682e0000000000005f82015250565b5f612367601a83611995565b915061237282612333565b602082019050919050565b5f6020820190508181035f8301526123948161235b565b9050919050565b7f4d696e7420746f20746865207a65726f206164647265737300000000000000005f82015250565b5f6123cf601883611995565b91506123da8261239b565b602082019050919050565b5f6020820190508181035f8301526123fc816123c3565b9050919050565b7f496e76616c696420616d6f756e7420287a65726f206f72206c657373292e00005f82015250565b5f612437601e83611995565b915061244282612403565b602082019050919050565b5f6020820190508181035f8301526124648161242b565b9050919050565b5f61247582611a86565b915061248083611a86565b925082820261248e81611a86565b915082820484148315176124a5576124a46120c5565b5b5092915050565b7f4d696e74696e67207468697320616d6f756e7420776f756c64206578636565645f8201527f2074686520676c6f62616c206c696d6974000000000000000000000000000000602082015250565b5f612506603183611995565b9150612511826124ac565b604082019050919050565b5f6020820190508181035f830152612533816124fa565b9050919050565b7f4d696e7420616d6f756e742065786365656473207468652063616c6c657227735f8201527f206d696e74696e67206c696d6974000000000000000000000000000000000000602082015250565b5f612594602e83611995565b915061259f8261253a565b604082019050919050565b5f6020820190508181035f8301526125c181612588565b9050919050565b5f819050919050565b5f67ffffffffffffffff82169050919050565b5f819050919050565b5f6126076126026125fd846125c8565b6125e4565b6125d1565b9050919050565b612617816125ed565b82525050565b5f6020820190506126305f83018461260e565b92915050565b5f6060820190506126495f830186611b2a565b6126566020830185611b52565b6126636040830184611b52565b949350505050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026126c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261268c565b6126d1868361268c565b95508019841693508086168417925050509392505050565b5f6127036126fe6126f984611a86565b6125e4565b611a86565b9050919050565b5f819050919050565b61271c836126e9565b6127306127288261270a565b848454612698565b825550505050565b5f90565b612744612738565b61274f818484612713565b505050565b5b81811015612772576127675f8261273c565b600181019050612755565b5050565b601f8211156127b7576127888161266b565b6127918461267d565b810160208510156127a0578190505b6127b46127ac8561267d565b830182612754565b50505b505050565b5f82821c905092915050565b5f6127d75f19846008026127bc565b1980831691505092915050565b5f6127ef83836127c8565b9150826002028217905092915050565b6128088261198b565b67ffffffffffffffff81111561282157612820611b7e565b5b61282b8254611f0a565b612836828285612776565b5f60209050601f831160018114612867575f8415612855578287015190505b61285f85826127e4565b8655506128c6565b601f1984166128758661266b565b5f5b8281101561289c57848901518255600182019150602085019450602081019050612877565b868310156128b957848901516128b5601f8916826127c8565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220454c0c512cd208b21d3dddd112fcfade8a63ca78f014ecdbbea37db9a8c658fe64736f6c63430008190033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c80638129fc1c116100b657806395d89b411161007a57806395d89b41146103295780639afcd33614610347578063a9059cbb14610377578063cc9338a3146103a7578063dd62ed3e146103c5578063f64bdbc0146103f557610135565b80638129fc1c1461029557806383ba6b591461029f5780638ad9403f146102cf5780638dae9318146102ed5780638fc590141461030b57610135565b806323b872dd116100fd57806323b872dd146101df5780632f81bc711461020f578063313ce5671461022b57806340c10f191461024957806370a082311461026557610135565b806306fdde0314610139578063095ea7b314610157578063178bc9d51461018757806318160ddd146101a55780631e89d545146101c3575b5f80fd5b610141610413565b60405161014e91906119fb565b60405180910390f35b610171600480360381019061016c9190611ab9565b6104b1565b60405161017e9190611b11565b60405180910390f35b61018f6104d3565b60405161019c9190611b39565b60405180910390f35b6101ad6104eb565b6040516101ba9190611b61565b60405180910390f35b6101dd60048036038101906101d89190611d7a565b610502565b005b6101f960048036038101906101f49190611df0565b610742565b6040516102069190611b11565b60405180910390f35b61022960048036038101906102249190611d7a565b610770565b005b6102336108db565b6040516102409190611e5b565b60405180910390f35b610263600480360381019061025e9190611ab9565b6108e3565b005b61027f600480360381019061027a9190611e74565b610bc3565b60405161028c9190611b61565b60405180910390f35b61029d610c16565b005b6102b960048036038101906102b49190611e74565b611031565b6040516102c69190611b61565b60405180910390f35b6102d7611089565b6040516102e49190611b61565b60405180910390f35b6102f5611091565b6040516103029190611b61565b60405180910390f35b610313611099565b6040516103209190611b39565b60405180910390f35b6103316110b1565b60405161033e91906119fb565b60405180910390f35b610361600480360381019061035c9190611e74565b61114f565b60405161036e9190611b61565b60405180910390f35b610391600480360381019061038c9190611ab9565b611195565b60405161039e9190611b11565b60405180910390f35b6103af6111b7565b6040516103bc9190611b39565b60405180910390f35b6103df60048036038101906103da9190611e9f565b6111cf565b6040516103ec9190611b61565b60405180910390f35b6103fd61125f565b60405161040a9190611b61565b60405180910390f35b60605f61041e611267565b905080600301805461042f90611f0a565b80601f016020809104026020016040519081016040528092919081815260200182805461045b90611f0a565b80156104a65780601f1061047d576101008083540402835291602001916104a6565b820191905f5260205f20905b81548152906001019060200180831161048957829003601f168201915b505050505091505090565b5f806104bb61128e565b90506104c8818585611295565b600191505092915050565b73c3b48a2a0995499dca3a77001b53337b289e85eb81565b5f806104f5611267565b9050806002015491505090565b5f825111610545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053c90611f84565b60405180910390fd5b8051825114610589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058090612012565b60405180910390fd5b5f805b8351811015610626575f8382815181106105a9576105a8612030565b5b6020026020010151116105f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e8906120a7565b60405180910390fd5b82818151811061060457610603612030565b5b60200260200101518261061791906120f2565b9150808060010191505061058c565b5061063033610bc3565b811115610672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066990612195565b60405180910390fd5b5f5b835181101561073c573073ffffffffffffffffffffffffffffffffffffffff166323b872dd338684815181106106ad576106ac612030565b5b60200260200101518685815181106106c8576106c7612030565b5b60200260200101516040518463ffffffff1660e01b81526004016106ee939291906121b3565b6020604051808303815f875af115801561070a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061072e9190612212565b508080600101915050610674565b50505050565b5f8061074c61128e565b90506107598582856112a7565b610764858585611339565b60019150509392505050565b60025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166107f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f0906122ad565b60405180910390fd5b5f82511161083c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083390612315565b60405180910390fd5b8051825114610880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108779061237d565b60405180910390fd5b5f5b82518110156108d6576108c98382815181106108a1576108a0612030565b5b60200260200101518383815181106108bc576108bb612030565b5b60200260200101516108e3565b8080600101915050610882565b505050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610948906123e5565b60405180910390fd5b60025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d1906122ad565b60405180910390fd5b5f8111610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a139061244d565b60405180910390fd5b670de0b6b3a76400006314dc9380610a34919061246b565b81610a3d6104eb565b610a4791906120f2565b1115610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f9061251c565b60405180910390fd5b670de0b6b3a76400005f803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610ad8919061246b565b8160015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610b2191906120f2565b1115610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b59906125aa565b60405180910390fd5b8060015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610bae91906120f2565b92505081905550610bbf8282611429565b5050565b5f80610bcd611267565b9050805f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054915050919050565b5f610c1f6114a8565b90505f815f0160089054906101000a900460ff161590505f825f015f9054906101000a900467ffffffffffffffff1690505f808267ffffffffffffffff16148015610c675750825b90505f60018367ffffffffffffffff16148015610c9a57505f3073ffffffffffffffffffffffffffffffffffffffff163b145b905081158015610ca8575080155b15610cdf576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001855f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508315610d2c576001855f0160086101000a81548160ff0219169083151502179055505b610da06040518060400160405280600481526020017f46696173000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46494153000000000000000000000000000000000000000000000000000000008152506114cf565b600160025f7380489c4d8dedefb102cfd2421083373d8027763b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160025f73c3b48a2a0995499dca3a77001b53337b289e85eb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550630a6e49c05f807380489c4d8dedefb102cfd2421083373d8027763b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550630a6e49c05f8073c3b48a2a0995499dca3a77001b53337b289e85eb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f60015f7380489c4d8dedefb102cfd2421083373d8027763b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f60015f73c3b48a2a0995499dca3a77001b53337b289e85eb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550831561102a575f855f0160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d26001604051611021919061261d565b60405180910390a15b5050505050565b5f670de0b6b3a76400005f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611082919061246b565b9050919050565b630a6e49c081565b6314dc938081565b734b5f0ba242ab6ef0de44bffdee2646f80e89605281565b60605f6110bc611267565b90508060040180546110cd90611f0a565b80601f01602080910402602001604051908101604052809291908181526020018280546110f990611f0a565b80156111445780601f1061111b57610100808354040283529160200191611144565b820191905f5260205f20905b81548152906001019060200180831161112757829003601f168201915b505050505091505090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f8061119f61128e565b90506111ac818585611339565b600191505092915050565b7380489c4d8dedefb102cfd2421083373d8027763b81565b5f806111d9611267565b9050806001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205491505092915050565b630a6e49c081565b5f7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00905090565b5f33905090565b6112a283838360016114e5565b505050565b5f6112b284846111cf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113335781811015611324578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161131b93929190612636565b60405180910390fd5b61133284848484035f6114e5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113a9575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113a09190611b39565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611419575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016114109190611b39565b60405180910390fd5b6114248383836116c2565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611499575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016114909190611b39565b60405180910390fd5b6114a45f83836116c2565b5050565b5f7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b6114d76118f1565b6114e18282611931565b5050565b5f6114ee611267565b90505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611560575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016115579190611b39565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115d0575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115c79190611b39565b60405180910390fd5b82816001015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555081156116bb578373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516116b29190611b61565b60405180910390a35b5050505050565b5f6116cb611267565b90505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361171f5781816002015f82825461171391906120f2565b925050819055506117f1565b5f815f015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156117aa578481846040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016117a193929190612636565b60405180910390fd5b828103825f015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361183a5781816002015f8282540392505081905550611886565b81815f015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118e39190611b61565b60405180910390a350505050565b6118f961196d565b61192f576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6119396118f1565b5f611942611267565b90508281600301908161195591906127ff565b508181600401908161196791906127ff565b50505050565b5f6119766114a8565b5f0160089054906101000a900460ff16905090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6119cd8261198b565b6119d78185611995565b93506119e78185602086016119a5565b6119f0816119b3565b840191505092915050565b5f6020820190508181035f830152611a1381846119c3565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611a5582611a2c565b9050919050565b611a6581611a4b565b8114611a6f575f80fd5b50565b5f81359050611a8081611a5c565b92915050565b5f819050919050565b611a9881611a86565b8114611aa2575f80fd5b50565b5f81359050611ab381611a8f565b92915050565b5f8060408385031215611acf57611ace611a24565b5b5f611adc85828601611a72565b9250506020611aed85828601611aa5565b9150509250929050565b5f8115159050919050565b611b0b81611af7565b82525050565b5f602082019050611b245f830184611b02565b92915050565b611b3381611a4b565b82525050565b5f602082019050611b4c5f830184611b2a565b92915050565b611b5b81611a86565b82525050565b5f602082019050611b745f830184611b52565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611bb4826119b3565b810181811067ffffffffffffffff82111715611bd357611bd2611b7e565b5b80604052505050565b5f611be5611a1b565b9050611bf18282611bab565b919050565b5f67ffffffffffffffff821115611c1057611c0f611b7e565b5b602082029050602081019050919050565b5f80fd5b5f611c37611c3284611bf6565b611bdc565b90508083825260208201905060208402830185811115611c5a57611c59611c21565b5b835b81811015611c835780611c6f8882611a72565b845260208401935050602081019050611c5c565b5050509392505050565b5f82601f830112611ca157611ca0611b7a565b5b8135611cb1848260208601611c25565b91505092915050565b5f67ffffffffffffffff821115611cd457611cd3611b7e565b5b602082029050602081019050919050565b5f611cf7611cf284611cba565b611bdc565b90508083825260208201905060208402830185811115611d1a57611d19611c21565b5b835b81811015611d435780611d2f8882611aa5565b845260208401935050602081019050611d1c565b5050509392505050565b5f82601f830112611d6157611d60611b7a565b5b8135611d71848260208601611ce5565b91505092915050565b5f8060408385031215611d9057611d8f611a24565b5b5f83013567ffffffffffffffff811115611dad57611dac611a28565b5b611db985828601611c8d565b925050602083013567ffffffffffffffff811115611dda57611dd9611a28565b5b611de685828601611d4d565b9150509250929050565b5f805f60608486031215611e0757611e06611a24565b5b5f611e1486828701611a72565b9350506020611e2586828701611a72565b9250506040611e3686828701611aa5565b9150509250925092565b5f60ff82169050919050565b611e5581611e40565b82525050565b5f602082019050611e6e5f830184611e4c565b92915050565b5f60208284031215611e8957611e88611a24565b5b5f611e9684828501611a72565b91505092915050565b5f8060408385031215611eb557611eb4611a24565b5b5f611ec285828601611a72565b9250506020611ed385828601611a72565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f2157607f821691505b602082108103611f3457611f33611edd565b5b50919050565b7f4e6f20726563697069656e7473206c69737465642e00000000000000000000005f82015250565b5f611f6e601583611995565b9150611f7982611f3a565b602082019050919050565b5f6020820190508181035f830152611f9b81611f62565b9050919050565b7f416d6f756e7420616e6420726563697069656e74206c656e6774687320646f205f8201527f6e6f74206d617463682e00000000000000000000000000000000000000000000602082015250565b5f611ffc602a83611995565b915061200782611fa2565b604082019050919050565b5f6020820190508181035f83015261202981611ff0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f457665727920616d6f756e74206d75737420626520706f7369746976652e00005f82015250565b5f612091601e83611995565b915061209c8261205d565b602082019050919050565b5f6020820190508181035f8301526120be81612085565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6120fc82611a86565b915061210783611a86565b925082820190508082111561211f5761211e6120c5565b5b92915050565b7f53656e64657220646f6573206e6f74206861766520656e6f75676820466961735f8201527f20746f6b656e732e000000000000000000000000000000000000000000000000602082015250565b5f61217f602883611995565b915061218a82612125565b604082019050919050565b5f6020820190508181035f8301526121ac81612173565b9050919050565b5f6060820190506121c65f830186611b2a565b6121d36020830185611b2a565b6121e06040830184611b52565b949350505050565b6121f181611af7565b81146121fb575f80fd5b50565b5f8151905061220c816121e8565b92915050565b5f6020828403121561222757612226611a24565b5b5f612234848285016121fe565b91505092915050565b7f43616c6c657220646f6573206e6f74206861766520746865206d696e746572205f8201527f726f6c6500000000000000000000000000000000000000000000000000000000602082015250565b5f612297602483611995565b91506122a28261223d565b604082019050919050565b5f6020820190508181035f8301526122c48161228b565b9050919050565b7f4e6f206d696e7420726563697069656e74732e000000000000000000000000005f82015250565b5f6122ff601383611995565b915061230a826122cb565b602082019050919050565b5f6020820190508181035f83015261232c816122f3565b9050919050565b7f526563697069656e742f416d6f756e74206d69736d617463682e0000000000005f82015250565b5f612367601a83611995565b915061237282612333565b602082019050919050565b5f6020820190508181035f8301526123948161235b565b9050919050565b7f4d696e7420746f20746865207a65726f206164647265737300000000000000005f82015250565b5f6123cf601883611995565b91506123da8261239b565b602082019050919050565b5f6020820190508181035f8301526123fc816123c3565b9050919050565b7f496e76616c696420616d6f756e7420287a65726f206f72206c657373292e00005f82015250565b5f612437601e83611995565b915061244282612403565b602082019050919050565b5f6020820190508181035f8301526124648161242b565b9050919050565b5f61247582611a86565b915061248083611a86565b925082820261248e81611a86565b915082820484148315176124a5576124a46120c5565b5b5092915050565b7f4d696e74696e67207468697320616d6f756e7420776f756c64206578636565645f8201527f2074686520676c6f62616c206c696d6974000000000000000000000000000000602082015250565b5f612506603183611995565b9150612511826124ac565b604082019050919050565b5f6020820190508181035f830152612533816124fa565b9050919050565b7f4d696e7420616d6f756e742065786365656473207468652063616c6c657227735f8201527f206d696e74696e67206c696d6974000000000000000000000000000000000000602082015250565b5f612594602e83611995565b915061259f8261253a565b604082019050919050565b5f6020820190508181035f8301526125c181612588565b9050919050565b5f819050919050565b5f67ffffffffffffffff82169050919050565b5f819050919050565b5f6126076126026125fd846125c8565b6125e4565b6125d1565b9050919050565b612617816125ed565b82525050565b5f6020820190506126305f83018461260e565b92915050565b5f6060820190506126495f830186611b2a565b6126566020830185611b52565b6126636040830184611b52565b949350505050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026126c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261268c565b6126d1868361268c565b95508019841693508086168417925050509392505050565b5f6127036126fe6126f984611a86565b6125e4565b611a86565b9050919050565b5f819050919050565b61271c836126e9565b6127306127288261270a565b848454612698565b825550505050565b5f90565b612744612738565b61274f818484612713565b505050565b5b81811015612772576127675f8261273c565b600181019050612755565b5050565b601f8211156127b7576127888161266b565b6127918461267d565b810160208510156127a0578190505b6127b46127ac8561267d565b830182612754565b50505b505050565b5f82821c905092915050565b5f6127d75f19846008026127bc565b1980831691505092915050565b5f6127ef83836127c8565b9150826002028217905092915050565b6128088261198b565b67ffffffffffffffff81111561282157612820611b7e565b5b61282b8254611f0a565b612836828285612776565b5f60209050601f831160018114612867575f8415612855578287015190505b61285f85826127e4565b8655506128c6565b601f1984166128758661266b565b5f5b8281101561289c57848901518255600182019150602085019450602081019050612877565b868310156128b957848901516128b5601f8916826127c8565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220454c0c512cd208b21d3dddd112fcfade8a63ca78f014ecdbbea37db9a8c658fe64736f6c63430008190033

Deployed Bytecode Sourcemap

33279:3184:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23485:147;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26058:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33624:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24699:155;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34412:717;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26826:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35137:441;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24550:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35586:609;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24917:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34012:392;;;:::i;:::-;;36203:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33863:50;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33569:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33920:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23751:151;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36338:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25296:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33772:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25541:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33715:50;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23485:147;23530:13;23556:22;23581:18;:16;:18::i;:::-;23556:43;;23617:1;:7;;23610:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23485:147;:::o;26058:190::-;26131:4;26148:13;26164:12;:10;:12::i;:::-;26148:28;;26187:31;26196:5;26203:7;26212:5;26187:8;:31::i;:::-;26236:4;26229:11;;;26058:190;;;;:::o;33624:84::-;33666:42;33624:84;:::o;24699:155::-;24751:7;24771:22;24796:18;:16;:18::i;:::-;24771:43;;24832:1;:14;;;24825:21;;;24699:155;:::o;34412:717::-;34536:1;34516:10;:17;:21;34508:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;34603:7;:14;34582:10;:17;:35;34574:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;34675:19;34714:9;34709:172;34733:10;:17;34729:1;:21;34709:172;;;34793:1;34780:7;34788:1;34780:10;;;;;;;;:::i;:::-;;;;;;;;:14;34772:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;34859:7;34867:1;34859:10;;;;;;;;:::i;:::-;;;;;;;;34844:25;;;;;:::i;:::-;;;34752:3;;;;;;;34709:172;;;;34914:21;34924:10;34914:9;:21::i;:::-;34899:11;:36;;34891:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;34996:9;34991:131;35015:10;:17;35011:1;:21;34991:131;;;35054:4;:17;;;35072:10;35084;35095:1;35084:13;;;;;;;;:::i;:::-;;;;;;;;35099:7;35107:1;35099:10;;;;;;;;:::i;:::-;;;;;;;;35054:56;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35034:3;;;;;;;34991:131;;;;34497:632;34412:717;;:::o;26826:249::-;26913:4;26930:15;26948:12;:10;:12::i;:::-;26930:30;;26971:37;26987:4;26993:7;27002:5;26971:15;:37::i;:::-;27019:26;27029:4;27035:2;27039:5;27019:9;:26::i;:::-;27063:4;27056:11;;;26826:249;;;;;:::o;35137:441::-;35237:15;:27;35253:10;35237:27;;;;;;;;;;;;;;;;;;;;;;;;;35229:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;35344:1;35324:10;:17;:21;35316:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;35409:7;:14;35388:10;:17;:35;35380:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;35470:9;35465:106;35489:10;:17;35485:1;:21;35465:106;;;35528:31;35533:10;35544:1;35533:13;;;;;;;;:::i;:::-;;;;;;;;35548:7;35556:1;35548:10;;;;;;;;:::i;:::-;;;;;;;;35528:4;:31::i;:::-;35508:3;;;;;;;35465:106;;;;35137:441;;:::o;24550:84::-;24599:5;24624:2;24617:9;;24550:84;:::o;35586:609::-;35668:1;35654:16;;:2;:16;;;35646:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;35718:15;:27;35734:10;35718:27;;;;;;;;;;;;;;;;;;;;;;;;;35710:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;35814:1;35805:6;:10;35797:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;35909:6;33608:9;35895:21;;;;:::i;:::-;35885:6;35869:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:47;;35861:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;36053:6;36027:12;:24;36040:10;36027:24;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;36017:6;35989:13;:25;36003:10;35989:25;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:71;;35981:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;36153:6;36124:13;:25;36138:10;36124:25;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;36170:17;36176:2;36180:6;36170:5;:17::i;:::-;35586:609;;:::o;24917:174::-;24982:7;25002:22;25027:18;:16;:18::i;:::-;25002:43;;25063:1;:11;;:20;25075:7;25063:20;;;;;;;;;;;;;;;;25056:27;;;24917:174;;;:::o;34012:392::-;11040:30;11073:26;:24;:26::i;:::-;11040:59;;11164:19;11187:1;:15;;;;;;;;;;;;11186:16;11164:38;;11213:18;11234:1;:14;;;;;;;;;;;;11213:35;;11599:17;11634:1;11619:11;:16;;;:34;;;;;11639:14;11619:34;11599:54;;11664:17;11699:1;11684:11;:16;;;:50;;;;;11733:1;11712:4;11704:25;;;:30;11684:50;11664:70;;11752:12;11751:13;:30;;;;;11769:12;11768:13;11751:30;11747:93;;;11805:23;;;;;;;;;;;;;;11747:93;11867:1;11850;:14;;;:18;;;;;;;;;;;;;;;;;;11883:14;11879:69;;;11932:4;11914:1;:15;;;:22;;;;;;;;;;;;;;;;;;11879:69;34064:28:::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;::::0;:12:::1;:28::i;:::-;34138:4;34103:15;:32;33814:42;34103:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34188:4;34153:15;:32;33666:42;34153:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;33904:9;34203:12;:29:::0;33814:42:::1;34203:29;;;;;;;;;;;;;;;:46;;;;33756:9;34260:12;:29:::0;33666:42:::1;34260:29;;;;;;;;;;;;;;;:46;;;;34350:1;34317:13;:30;33814:42;34317:30;;;;;;;;;;;;;;;:34;;;;34395:1;34362:13;:30;33666:42;34362:30;;;;;;;;;;;;;;;:34;;;;11974:14:::0;11970:104;;;12023:5;12005:1;:15;;;:23;;;;;;;;;;;;;;;;;;12048:14;12060:1;12048:14;;;;;;:::i;:::-;;;;;;;;11970:104;10972:1109;;;;;34012:392::o;36203:127::-;36266:7;36315:6;36293:12;:20;36306:6;36293:20;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;36286:36;;36203:127;;;:::o;33863:50::-;33904:9;33863:50;:::o;33569:48::-;33608:9;33569:48;:::o;33920:83::-;33961:42;33920:83;:::o;23751:151::-;23798:13;23824:22;23849:18;:16;:18::i;:::-;23824:43;;23885:1;:9;;23878:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23751:151;:::o;36338:122::-;36404:7;36431:13;:21;36445:6;36431:21;;;;;;;;;;;;;;;;36424:28;;36338:122;;;:::o;25296:182::-;25365:4;25382:13;25398:12;:10;:12::i;:::-;25382:28;;25421:27;25431:5;25438:2;25442:5;25421:9;:27::i;:::-;25466:4;25459:11;;;25296:182;;;;:::o;33772:84::-;33814:42;33772:84;:::o;25541:198::-;25621:7;25641:22;25666:18;:16;:18::i;:::-;25641:43;;25702:1;:13;;:20;25716:5;25702:20;;;;;;;;;;;;;;;:29;25723:7;25702:29;;;;;;;;;;;;;;;;25695:36;;;25541:198;;;;:::o;33715:50::-;33756:9;33715:50;:::o;22691:157::-;22741:22;22810:20;22800:30;;22691:157;:::o;16809:98::-;16862:7;16889:10;16882:17;;16809:98;:::o;30949:130::-;31034:37;31043:5;31050:7;31059:5;31066:4;31034:8;:37::i;:::-;30949:130;;;:::o;32721:487::-;32821:24;32848:25;32858:5;32865:7;32848:9;:25::i;:::-;32821:52;;32908:17;32888:16;:37;32884:317;;32965:5;32946:16;:24;32942:132;;;33025:7;33034:16;33052:5;32998:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;32942:132;33117:57;33126:5;33133:7;33161:5;33142:16;:24;33168:5;33117:8;:57::i;:::-;32884:317;32810:398;32721:487;;;:::o;27460:308::-;27560:1;27544:18;;:4;:18;;;27540:88;;27613:1;27586:30;;;;;;;;;;;:::i;:::-;;;;;;;;27540:88;27656:1;27642:16;;:2;:16;;;27638:88;;27711:1;27682:32;;;;;;;;;;;:::i;:::-;;;;;;;;27638:88;27736:24;27744:4;27750:2;27754:5;27736:7;:24::i;:::-;27460:308;;;:::o;29644:213::-;29734:1;29715:21;;:7;:21;;;29711:93;;29789:1;29760:32;;;;;;;;;;;:::i;:::-;;;;;;;;29711:93;29814:35;29830:1;29834:7;29843:5;29814:7;:35::i;:::-;29644:213;;:::o;15736:174::-;15794:30;15871:21;15861:31;;15736:174;:::o;23038:149::-;13878:20;:18;:20::i;:::-;23141:38:::1;23164:5;23171:7;23141:22;:38::i;:::-;23038:149:::0;;:::o;31930:499::-;32039:22;32064:18;:16;:18::i;:::-;32039:43;;32114:1;32097:19;;:5;:19;;;32093:91;;32169:1;32140:32;;;;;;;;;;;:::i;:::-;;;;;;;;32093:91;32217:1;32198:21;;:7;:21;;;32194:92;;32271:1;32243:31;;;;;;;;;;;:::i;:::-;;;;;;;;32194:92;32328:5;32296:1;:13;;:20;32310:5;32296:20;;;;;;;;;;;;;;;:29;32317:7;32296:29;;;;;;;;;;;;;;;:37;;;;32348:9;32344:78;;;32395:7;32379:31;;32388:5;32379:31;;;32404:5;32379:31;;;;;;:::i;:::-;;;;;;;;32344:78;32028:401;31930:499;;;;:::o;28092:1199::-;28178:22;28203:18;:16;:18::i;:::-;28178:43;;28252:1;28236:18;;:4;:18;;;28232:558;;28392:5;28374:1;:14;;;:23;;;;;;;:::i;:::-;;;;;;;;28232:558;;;28430:19;28452:1;:11;;:17;28464:4;28452:17;;;;;;;;;;;;;;;;28430:39;;28502:5;28488:11;:19;28484:117;;;28560:4;28566:11;28579:5;28535:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;28484:117;28758:5;28744:11;:19;28724:1;:11;;:17;28736:4;28724:17;;;;;;;;;;;;;;;:39;;;;28415:375;28232:558;28820:1;28806:16;;:2;:16;;;28802:439;;28990:5;28972:1;:14;;;:23;;;;;;;;;;;28802:439;;;29209:5;29190:1;:11;;:15;29202:2;29190:15;;;;;;;;;;;;;;;;:24;;;;;;;;;;;28802:439;29273:2;29258:25;;29267:4;29258:25;;;29277:5;29258:25;;;;;;:::i;:::-;;;;;;;;28167:1124;28092:1199;;;:::o;14038:145::-;14106:17;:15;:17::i;:::-;14101:75;;14147:17;;;;;;;;;;;;;;14101:75;14038:145::o;23195:220::-;13878:20;:18;:20::i;:::-;23308:22:::1;23333:18;:16;:18::i;:::-;23308:43;;23372:5;23362:1;:7;;:15;;;;;;:::i;:::-;;23400:7;23388:1;:9;;:19;;;;;;:::i;:::-;;23297:118;23195:220:::0;;:::o;15478:122::-;15528:4;15552:26;:24;:26::i;:::-;:40;;;;;;;;;;;;15545:47;;15478:122;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1242:75::-;1275:6;1308:2;1302:9;1292:19;;1242:75;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:118::-;3778:24;3796:5;3778:24;:::i;:::-;3773:3;3766:37;3691:118;;:::o;3815:222::-;3908:4;3946:2;3935:9;3931:18;3923:26;;3959:71;4027:1;4016:9;4012:17;4003:6;3959:71;:::i;:::-;3815:222;;;;:::o;4043:117::-;4152:1;4149;4142:12;4166:180;4214:77;4211:1;4204:88;4311:4;4308:1;4301:15;4335:4;4332:1;4325:15;4352:281;4435:27;4457:4;4435:27;:::i;:::-;4427:6;4423:40;4565:6;4553:10;4550:22;4529:18;4517:10;4514:34;4511:62;4508:88;;;4576:18;;:::i;:::-;4508:88;4616:10;4612:2;4605:22;4395:238;4352:281;;:::o;4639:129::-;4673:6;4700:20;;:::i;:::-;4690:30;;4729:33;4757:4;4749:6;4729:33;:::i;:::-;4639:129;;;:::o;4774:311::-;4851:4;4941:18;4933:6;4930:30;4927:56;;;4963:18;;:::i;:::-;4927:56;5013:4;5005:6;5001:17;4993:25;;5073:4;5067;5063:15;5055:23;;4774:311;;;:::o;5091:117::-;5200:1;5197;5190:12;5231:710;5327:5;5352:81;5368:64;5425:6;5368:64;:::i;:::-;5352:81;:::i;:::-;5343:90;;5453:5;5482:6;5475:5;5468:21;5516:4;5509:5;5505:16;5498:23;;5569:4;5561:6;5557:17;5549:6;5545:30;5598:3;5590:6;5587:15;5584:122;;;5617:79;;:::i;:::-;5584:122;5732:6;5715:220;5749:6;5744:3;5741:15;5715:220;;;5824:3;5853:37;5886:3;5874:10;5853:37;:::i;:::-;5848:3;5841:50;5920:4;5915:3;5911:14;5904:21;;5791:144;5775:4;5770:3;5766:14;5759:21;;5715:220;;;5719:21;5333:608;;5231:710;;;;;:::o;5964:370::-;6035:5;6084:3;6077:4;6069:6;6065:17;6061:27;6051:122;;6092:79;;:::i;:::-;6051:122;6209:6;6196:20;6234:94;6324:3;6316:6;6309:4;6301:6;6297:17;6234:94;:::i;:::-;6225:103;;6041:293;5964:370;;;;:::o;6340:311::-;6417:4;6507:18;6499:6;6496:30;6493:56;;;6529:18;;:::i;:::-;6493:56;6579:4;6571:6;6567:17;6559:25;;6639:4;6633;6629:15;6621:23;;6340:311;;;:::o;6674:710::-;6770:5;6795:81;6811:64;6868:6;6811:64;:::i;:::-;6795:81;:::i;:::-;6786:90;;6896:5;6925:6;6918:5;6911:21;6959:4;6952:5;6948:16;6941:23;;7012:4;7004:6;7000:17;6992:6;6988:30;7041:3;7033:6;7030:15;7027:122;;;7060:79;;:::i;:::-;7027:122;7175:6;7158:220;7192:6;7187:3;7184:15;7158:220;;;7267:3;7296:37;7329:3;7317:10;7296:37;:::i;:::-;7291:3;7284:50;7363:4;7358:3;7354:14;7347:21;;7234:144;7218:4;7213:3;7209:14;7202:21;;7158:220;;;7162:21;6776:608;;6674:710;;;;;:::o;7407:370::-;7478:5;7527:3;7520:4;7512:6;7508:17;7504:27;7494:122;;7535:79;;:::i;:::-;7494:122;7652:6;7639:20;7677:94;7767:3;7759:6;7752:4;7744:6;7740:17;7677:94;:::i;:::-;7668:103;;7484:293;7407:370;;;;:::o;7783:894::-;7901:6;7909;7958:2;7946:9;7937:7;7933:23;7929:32;7926:119;;;7964:79;;:::i;:::-;7926:119;8112:1;8101:9;8097:17;8084:31;8142:18;8134:6;8131:30;8128:117;;;8164:79;;:::i;:::-;8128:117;8269:78;8339:7;8330:6;8319:9;8315:22;8269:78;:::i;:::-;8259:88;;8055:302;8424:2;8413:9;8409:18;8396:32;8455:18;8447:6;8444:30;8441:117;;;8477:79;;:::i;:::-;8441:117;8582:78;8652:7;8643:6;8632:9;8628:22;8582:78;:::i;:::-;8572:88;;8367:303;7783:894;;;;;:::o;8683:619::-;8760:6;8768;8776;8825:2;8813:9;8804:7;8800:23;8796:32;8793:119;;;8831:79;;:::i;:::-;8793:119;8951:1;8976:53;9021:7;9012:6;9001:9;8997:22;8976:53;:::i;:::-;8966:63;;8922:117;9078:2;9104:53;9149:7;9140:6;9129:9;9125:22;9104:53;:::i;:::-;9094:63;;9049:118;9206:2;9232:53;9277:7;9268:6;9257:9;9253:22;9232:53;:::i;:::-;9222:63;;9177:118;8683:619;;;;;:::o;9308:86::-;9343:7;9383:4;9376:5;9372:16;9361:27;;9308:86;;;:::o;9400:112::-;9483:22;9499:5;9483:22;:::i;:::-;9478:3;9471:35;9400:112;;:::o;9518:214::-;9607:4;9645:2;9634:9;9630:18;9622:26;;9658:67;9722:1;9711:9;9707:17;9698:6;9658:67;:::i;:::-;9518:214;;;;:::o;9738:329::-;9797:6;9846:2;9834:9;9825:7;9821:23;9817:32;9814:119;;;9852:79;;:::i;:::-;9814:119;9972:1;9997:53;10042:7;10033:6;10022:9;10018:22;9997:53;:::i;:::-;9987:63;;9943:117;9738:329;;;;:::o;10073:474::-;10141:6;10149;10198:2;10186:9;10177:7;10173:23;10169:32;10166:119;;;10204:79;;:::i;:::-;10166:119;10324:1;10349:53;10394:7;10385:6;10374:9;10370:22;10349:53;:::i;:::-;10339:63;;10295:117;10451:2;10477:53;10522:7;10513:6;10502:9;10498:22;10477:53;:::i;:::-;10467:63;;10422:118;10073:474;;;;;:::o;10553:180::-;10601:77;10598:1;10591:88;10698:4;10695:1;10688:15;10722:4;10719:1;10712:15;10739:320;10783:6;10820:1;10814:4;10810:12;10800:22;;10867:1;10861:4;10857:12;10888:18;10878:81;;10944:4;10936:6;10932:17;10922:27;;10878:81;11006:2;10998:6;10995:14;10975:18;10972:38;10969:84;;11025:18;;:::i;:::-;10969:84;10790:269;10739:320;;;:::o;11065:171::-;11205:23;11201:1;11193:6;11189:14;11182:47;11065:171;:::o;11242:366::-;11384:3;11405:67;11469:2;11464:3;11405:67;:::i;:::-;11398:74;;11481:93;11570:3;11481:93;:::i;:::-;11599:2;11594:3;11590:12;11583:19;;11242:366;;;:::o;11614:419::-;11780:4;11818:2;11807:9;11803:18;11795:26;;11867:9;11861:4;11857:20;11853:1;11842:9;11838:17;11831:47;11895:131;12021:4;11895:131;:::i;:::-;11887:139;;11614:419;;;:::o;12039:229::-;12179:34;12175:1;12167:6;12163:14;12156:58;12248:12;12243:2;12235:6;12231:15;12224:37;12039:229;:::o;12274:366::-;12416:3;12437:67;12501:2;12496:3;12437:67;:::i;:::-;12430:74;;12513:93;12602:3;12513:93;:::i;:::-;12631:2;12626:3;12622:12;12615:19;;12274:366;;;:::o;12646:419::-;12812:4;12850:2;12839:9;12835:18;12827:26;;12899:9;12893:4;12889:20;12885:1;12874:9;12870:17;12863:47;12927:131;13053:4;12927:131;:::i;:::-;12919:139;;12646:419;;;:::o;13071:180::-;13119:77;13116:1;13109:88;13216:4;13213:1;13206:15;13240:4;13237:1;13230:15;13257:180;13397:32;13393:1;13385:6;13381:14;13374:56;13257:180;:::o;13443:366::-;13585:3;13606:67;13670:2;13665:3;13606:67;:::i;:::-;13599:74;;13682:93;13771:3;13682:93;:::i;:::-;13800:2;13795:3;13791:12;13784:19;;13443:366;;;:::o;13815:419::-;13981:4;14019:2;14008:9;14004:18;13996:26;;14068:9;14062:4;14058:20;14054:1;14043:9;14039:17;14032:47;14096:131;14222:4;14096:131;:::i;:::-;14088:139;;13815:419;;;:::o;14240:180::-;14288:77;14285:1;14278:88;14385:4;14382:1;14375:15;14409:4;14406:1;14399:15;14426:191;14466:3;14485:20;14503:1;14485:20;:::i;:::-;14480:25;;14519:20;14537:1;14519:20;:::i;:::-;14514:25;;14562:1;14559;14555:9;14548:16;;14583:3;14580:1;14577:10;14574:36;;;14590:18;;:::i;:::-;14574:36;14426:191;;;;:::o;14623:227::-;14763:34;14759:1;14751:6;14747:14;14740:58;14832:10;14827:2;14819:6;14815:15;14808:35;14623:227;:::o;14856:366::-;14998:3;15019:67;15083:2;15078:3;15019:67;:::i;:::-;15012:74;;15095:93;15184:3;15095:93;:::i;:::-;15213:2;15208:3;15204:12;15197:19;;14856:366;;;:::o;15228:419::-;15394:4;15432:2;15421:9;15417:18;15409:26;;15481:9;15475:4;15471:20;15467:1;15456:9;15452:17;15445:47;15509:131;15635:4;15509:131;:::i;:::-;15501:139;;15228:419;;;:::o;15653:442::-;15802:4;15840:2;15829:9;15825:18;15817:26;;15853:71;15921:1;15910:9;15906:17;15897:6;15853:71;:::i;:::-;15934:72;16002:2;15991:9;15987:18;15978:6;15934:72;:::i;:::-;16016;16084:2;16073:9;16069:18;16060:6;16016:72;:::i;:::-;15653:442;;;;;;:::o;16101:116::-;16171:21;16186:5;16171:21;:::i;:::-;16164:5;16161:32;16151:60;;16207:1;16204;16197:12;16151:60;16101:116;:::o;16223:137::-;16277:5;16308:6;16302:13;16293:22;;16324:30;16348:5;16324:30;:::i;:::-;16223:137;;;;:::o;16366:345::-;16433:6;16482:2;16470:9;16461:7;16457:23;16453:32;16450:119;;;16488:79;;:::i;:::-;16450:119;16608:1;16633:61;16686:7;16677:6;16666:9;16662:22;16633:61;:::i;:::-;16623:71;;16579:125;16366:345;;;;:::o;16717:223::-;16857:34;16853:1;16845:6;16841:14;16834:58;16926:6;16921:2;16913:6;16909:15;16902:31;16717:223;:::o;16946:366::-;17088:3;17109:67;17173:2;17168:3;17109:67;:::i;:::-;17102:74;;17185:93;17274:3;17185:93;:::i;:::-;17303:2;17298:3;17294:12;17287:19;;16946:366;;;:::o;17318:419::-;17484:4;17522:2;17511:9;17507:18;17499:26;;17571:9;17565:4;17561:20;17557:1;17546:9;17542:17;17535:47;17599:131;17725:4;17599:131;:::i;:::-;17591:139;;17318:419;;;:::o;17743:169::-;17883:21;17879:1;17871:6;17867:14;17860:45;17743:169;:::o;17918:366::-;18060:3;18081:67;18145:2;18140:3;18081:67;:::i;:::-;18074:74;;18157:93;18246:3;18157:93;:::i;:::-;18275:2;18270:3;18266:12;18259:19;;17918:366;;;:::o;18290:419::-;18456:4;18494:2;18483:9;18479:18;18471:26;;18543:9;18537:4;18533:20;18529:1;18518:9;18514:17;18507:47;18571:131;18697:4;18571:131;:::i;:::-;18563:139;;18290:419;;;:::o;18715:176::-;18855:28;18851:1;18843:6;18839:14;18832:52;18715:176;:::o;18897:366::-;19039:3;19060:67;19124:2;19119:3;19060:67;:::i;:::-;19053:74;;19136:93;19225:3;19136:93;:::i;:::-;19254:2;19249:3;19245:12;19238:19;;18897:366;;;:::o;19269:419::-;19435:4;19473:2;19462:9;19458:18;19450:26;;19522:9;19516:4;19512:20;19508:1;19497:9;19493:17;19486:47;19550:131;19676:4;19550:131;:::i;:::-;19542:139;;19269:419;;;:::o;19694:174::-;19834:26;19830:1;19822:6;19818:14;19811:50;19694:174;:::o;19874:366::-;20016:3;20037:67;20101:2;20096:3;20037:67;:::i;:::-;20030:74;;20113:93;20202:3;20113:93;:::i;:::-;20231:2;20226:3;20222:12;20215:19;;19874:366;;;:::o;20246:419::-;20412:4;20450:2;20439:9;20435:18;20427:26;;20499:9;20493:4;20489:20;20485:1;20474:9;20470:17;20463:47;20527:131;20653:4;20527:131;:::i;:::-;20519:139;;20246:419;;;:::o;20671:180::-;20811:32;20807:1;20799:6;20795:14;20788:56;20671:180;:::o;20857:366::-;20999:3;21020:67;21084:2;21079:3;21020:67;:::i;:::-;21013:74;;21096:93;21185:3;21096:93;:::i;:::-;21214:2;21209:3;21205:12;21198:19;;20857:366;;;:::o;21229:419::-;21395:4;21433:2;21422:9;21418:18;21410:26;;21482:9;21476:4;21472:20;21468:1;21457:9;21453:17;21446:47;21510:131;21636:4;21510:131;:::i;:::-;21502:139;;21229:419;;;:::o;21654:410::-;21694:7;21717:20;21735:1;21717:20;:::i;:::-;21712:25;;21751:20;21769:1;21751:20;:::i;:::-;21746:25;;21806:1;21803;21799:9;21828:30;21846:11;21828:30;:::i;:::-;21817:41;;22007:1;21998:7;21994:15;21991:1;21988:22;21968:1;21961:9;21941:83;21918:139;;22037:18;;:::i;:::-;21918:139;21702:362;21654:410;;;;:::o;22070:236::-;22210:34;22206:1;22198:6;22194:14;22187:58;22279:19;22274:2;22266:6;22262:15;22255:44;22070:236;:::o;22312:366::-;22454:3;22475:67;22539:2;22534:3;22475:67;:::i;:::-;22468:74;;22551:93;22640:3;22551:93;:::i;:::-;22669:2;22664:3;22660:12;22653:19;;22312:366;;;:::o;22684:419::-;22850:4;22888:2;22877:9;22873:18;22865:26;;22937:9;22931:4;22927:20;22923:1;22912:9;22908:17;22901:47;22965:131;23091:4;22965:131;:::i;:::-;22957:139;;22684:419;;;:::o;23109:233::-;23249:34;23245:1;23237:6;23233:14;23226:58;23318:16;23313:2;23305:6;23301:15;23294:41;23109:233;:::o;23348:366::-;23490:3;23511:67;23575:2;23570:3;23511:67;:::i;:::-;23504:74;;23587:93;23676:3;23587:93;:::i;:::-;23705:2;23700:3;23696:12;23689:19;;23348:366;;;:::o;23720:419::-;23886:4;23924:2;23913:9;23909:18;23901:26;;23973:9;23967:4;23963:20;23959:1;23948:9;23944:17;23937:47;24001:131;24127:4;24001:131;:::i;:::-;23993:139;;23720:419;;;:::o;24145:85::-;24190:7;24219:5;24208:16;;24145:85;;;:::o;24236:101::-;24272:7;24312:18;24305:5;24301:30;24290:41;;24236:101;;;:::o;24343:60::-;24371:3;24392:5;24385:12;;24343:60;;;:::o;24409:156::-;24466:9;24499:60;24516:42;24525:32;24551:5;24525:32;:::i;:::-;24516:42;:::i;:::-;24499:60;:::i;:::-;24486:73;;24409:156;;;:::o;24571:145::-;24665:44;24703:5;24665:44;:::i;:::-;24660:3;24653:57;24571:145;;:::o;24722:236::-;24822:4;24860:2;24849:9;24845:18;24837:26;;24873:78;24948:1;24937:9;24933:17;24924:6;24873:78;:::i;:::-;24722:236;;;;:::o;24964:442::-;25113:4;25151:2;25140:9;25136:18;25128:26;;25164:71;25232:1;25221:9;25217:17;25208:6;25164:71;:::i;:::-;25245:72;25313:2;25302:9;25298:18;25289:6;25245:72;:::i;:::-;25327;25395:2;25384:9;25380:18;25371:6;25327:72;:::i;:::-;24964:442;;;;;;:::o;25412:141::-;25461:4;25484:3;25476:11;;25507:3;25504:1;25497:14;25541:4;25538:1;25528:18;25520:26;;25412:141;;;:::o;25559:93::-;25596:6;25643:2;25638;25631:5;25627:14;25623:23;25613:33;;25559:93;;;:::o;25658:107::-;25702:8;25752:5;25746:4;25742:16;25721:37;;25658:107;;;;:::o;25771:393::-;25840:6;25890:1;25878:10;25874:18;25913:97;25943:66;25932:9;25913:97;:::i;:::-;26031:39;26061:8;26050:9;26031:39;:::i;:::-;26019:51;;26103:4;26099:9;26092:5;26088:21;26079:30;;26152:4;26142:8;26138:19;26131:5;26128:30;26118:40;;25847:317;;25771:393;;;;;:::o;26170:142::-;26220:9;26253:53;26271:34;26280:24;26298:5;26280:24;:::i;:::-;26271:34;:::i;:::-;26253:53;:::i;:::-;26240:66;;26170:142;;;:::o;26318:75::-;26361:3;26382:5;26375:12;;26318:75;;;:::o;26399:269::-;26509:39;26540:7;26509:39;:::i;:::-;26570:91;26619:41;26643:16;26619:41;:::i;:::-;26611:6;26604:4;26598:11;26570:91;:::i;:::-;26564:4;26557:105;26475:193;26399:269;;;:::o;26674:73::-;26719:3;26674:73;:::o;26753:189::-;26830:32;;:::i;:::-;26871:65;26929:6;26921;26915:4;26871:65;:::i;:::-;26806:136;26753:189;;:::o;26948:186::-;27008:120;27025:3;27018:5;27015:14;27008:120;;;27079:39;27116:1;27109:5;27079:39;:::i;:::-;27052:1;27045:5;27041:13;27032:22;;27008:120;;;26948:186;;:::o;27140:543::-;27241:2;27236:3;27233:11;27230:446;;;27275:38;27307:5;27275:38;:::i;:::-;27359:29;27377:10;27359:29;:::i;:::-;27349:8;27345:44;27542:2;27530:10;27527:18;27524:49;;;27563:8;27548:23;;27524:49;27586:80;27642:22;27660:3;27642:22;:::i;:::-;27632:8;27628:37;27615:11;27586:80;:::i;:::-;27245:431;;27230:446;27140:543;;;:::o;27689:117::-;27743:8;27793:5;27787:4;27783:16;27762:37;;27689:117;;;;:::o;27812:169::-;27856:6;27889:51;27937:1;27933:6;27925:5;27922:1;27918:13;27889:51;:::i;:::-;27885:56;27970:4;27964;27960:15;27950:25;;27863:118;27812:169;;;;:::o;27986:295::-;28062:4;28208:29;28233:3;28227:4;28208:29;:::i;:::-;28200:37;;28270:3;28267:1;28263:11;28257:4;28254:21;28246:29;;27986:295;;;;:::o;28286:1395::-;28403:37;28436:3;28403:37;:::i;:::-;28505:18;28497:6;28494:30;28491:56;;;28527:18;;:::i;:::-;28491:56;28571:38;28603:4;28597:11;28571:38;:::i;:::-;28656:67;28716:6;28708;28702:4;28656:67;:::i;:::-;28750:1;28774:4;28761:17;;28806:2;28798:6;28795:14;28823:1;28818:618;;;;29480:1;29497:6;29494:77;;;29546:9;29541:3;29537:19;29531:26;29522:35;;29494:77;29597:67;29657:6;29650:5;29597:67;:::i;:::-;29591:4;29584:81;29453:222;28788:887;;28818:618;28870:4;28866:9;28858:6;28854:22;28904:37;28936:4;28904:37;:::i;:::-;28963:1;28977:208;28991:7;28988:1;28985:14;28977:208;;;29070:9;29065:3;29061:19;29055:26;29047:6;29040:42;29121:1;29113:6;29109:14;29099:24;;29168:2;29157:9;29153:18;29140:31;;29014:4;29011:1;29007:12;29002:17;;28977:208;;;29213:6;29204:7;29201:19;29198:179;;;29271:9;29266:3;29262:19;29256:26;29314:48;29356:4;29348:6;29344:17;29333:9;29314:48;:::i;:::-;29306:6;29299:64;29221:156;29198:179;29423:1;29419;29411:6;29407:14;29403:22;29397:4;29390:36;28825:611;;;28788:887;;28378:1303;;;28286:1395;;:::o

Swarm Source

ipfs://454c0c512cd208b21d3dddd112fcfade8a63ca78f014ecdbbea37db9a8c658fe
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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