WEMIX Price: $0.894607 (-0.57%)

Token

WEMIX$ (WEMIX$)

Overview

Max Total Supply

14,539,841.004882 WEMIX$

Holders

73,898

Market

Price

$0.98 @ 1.092137 WEMIX

Onchain Market Cap

$14,205,904.48

Circulating Supply Market Cap

$10,310,491.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
33,355.631451903378425012 WEMIX$

Value
$32,589.55 ( ~36,428.9202 WEMIX) [0.2294%]
0x5c4368f728dc348ef1b4396843fc3101870782ce
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

WEMIX$, a stablecoin issued on WEMIX3.0 mainnet with fully backed reserve, stimulates the transition of value within the platform-driven and service-oriented mega-ecosystem.

Market

Volume (24H):$2,460.27
Market Capitalization:$10,310,491.00
Circulating Supply:11,643,013.00 WEMIX$
Market Data Source: Coinmarketcap

Contract Source Code Verified (Exact Match)

Contract Name:
WemixDollar

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at wemixscan.com on 2023-09-05
*/

// Sources flattened with hardhat v2.10.1 https://hardhat.org

// File @openzeppelin/contracts/token/ERC20/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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


// File contracts/interfaces/IWemixDollar.sol

pragma solidity 0.8.9;

interface IWemixDollar is IERC20 {
    /* =========== STATE VARIABLES ===========*/

    function isWhitelist(address _whitelist) external view returns (uint256);

    /* =========== FUNCTIONS ===========*/

    function mint(address _to, uint256 _amount) external;

    function burn(address _from, uint256 _amount) external;

    function addPool(
        string calldata _poolName,
        address[] calldata _whitelists,
        address _owner,
        address _ownerSetter,
        address _breaker,
        address _breakerSetter,
        bool _stop
    ) external;

    function addPoolWhitelist(uint256 _poolId, address _whitelist) external;

    function removePoolWhitelist(uint256 _poolId, address _whitelist) external;

    function replacePoolWhitelist(
        uint256 _poolId,
        address _whitelist,
        address _newWhitelist
    ) external;

    function setPoolOwner(uint256 _poolId, address _owner) external;

    function setPoolOwnerSetter(uint256 _poolId, address _ownerSetter) external;

    function setPoolBreaker(uint256 _poolId, address _breaker) external;

    function setPoolBreakerSetter(
        uint256 _poolId,
        address _breakerSetter
    ) external;

    function stopContract(uint256 _poolId) external;

    function resumeContract(uint256 _poolId) external;

    /* =========== VEIW FUNCTIONS ===========*/

    function getWemixDollarInfo(
        uint256 _poolId
    )
        external
        view
        returns (
            uint256,
            string memory,
            uint256,
            address[] memory,
            address,
            address,
            address,
            address,
            bool
        );

    function getWemixDollarInfoCount() external view returns (uint256);

    function getWhitelistAddress(
        uint256 _poolId
    ) external view returns (address[] memory);

    function getWhitelistAddressCount(
        uint256 _poolId
    ) external view returns (uint256);

    /* =========== EVENT ===========*/

    event WemixDollarMinted(address to, uint256 amount, uint256 poolId);
    event WemixDollarBurned(address from, uint256 amount, uint256 poolId);

    event AddPool(
        uint256 poolId,
        string poolName,
        address[] whitelists,
        address owner,
        address ownerSetter,
        address breaker,
        address breakerSetter,
        bool stop
    );

    event AddPoolWhitelist(uint256 poolId, address whitelist);
    event RemovePoolWhitelist(uint256 poolId, address whitelist);

    event SetPoolOwner(uint256 poolId, address owner);
    event SetPoolOwnerSetter(uint256 poolId, address ownerSetter);

    event SetPoolBreaker(uint256 poolId, address breaker);
    event SetPoolBreakerSetter(uint256 poolId, address breakerSetter);

    event StopContract(uint256 poolId);
    event ResumeContract(uint256 poolId);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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/utils/[email protected]


pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


pragma solidity ^0.8.0;



/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        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 value {ERC20} uses, unless this function is
     * 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 override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File @openzeppelin/contracts/access/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


// File contracts/WemixDollar.sol

pragma solidity 0.8.9;


contract WemixDollar is IWemixDollar, ERC20, Ownable {
    /* =========== STATE VARIABLES ===========*/

    struct WemixDollarInfo {
        uint256 poolId;
        string poolName;
        uint256 poolTotalSupply;
        address[] whitelists;
        address owner;
        address ownerSetter;
        address breaker;
        address breakerSetter;
        bool stop;
    }

    WemixDollarInfo[] public wemixDollarInfos;
    mapping(address => uint256) public isWhitelist;

    /* =========== CONSTRUCTOR =========== */

    constructor() ERC20("WEMIX$", "WEMIX$") Ownable() {
        address[] memory zeroArray = new address[](0);

        wemixDollarInfos.push(
            WemixDollarInfo({
                poolId: 0,
                poolName: "WEMIX$-POOL",
                poolTotalSupply: 0,
                whitelists: zeroArray,
                owner: address(0),
                ownerSetter: address(0),
                breaker: address(0),
                breakerSetter: address(0),
                stop: true
            })
        );
    }

    /* =========== MINT BURN FUNCTIONS =========== */

    /**
     * @notice Issue Wemix Dollars to _to address.
     * @param _to Address to issue wemix dollar.
     * @param _amount Amount of Wemix Dollars to be issued.
     */
    function mint(address _to, uint256 _amount) external isWhitelistAddress {
        uint256 poolId = isWhitelist[msg.sender];
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[poolId];

        require(wemixDollarInfo.stop == false, "WEMIX$: EMERGENCY!");
        _mint(_to, _amount);

        wemixDollarInfo.poolTotalSupply += _amount;

        emit WemixDollarMinted(_to, _amount, poolId);
    }

    /**
     * @notice Burn Wemix Dollars to _from address.
     * @param _from Address to burn wemix dollar.
     * @param _amount Amount of Wemix Dollars to be burned.
     */
    function burn(address _from, uint256 _amount) external isWhitelistAddress {
        uint256 poolId = isWhitelist[msg.sender];
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[poolId];

        require(wemixDollarInfo.stop == false, "WEMIX$: EMERGENCY!");
        _burn(_from, _amount);

        wemixDollarInfo.poolTotalSupply -= _amount;

        emit WemixDollarBurned(_from, _amount, poolId);
    }

    /* =========== POOL FUNCTIONS =========== */

    /**
     * @notice Add Pool.
     * @param _poolName Write Pool Name.
     * @param _whitelists Array of Whitelist address.
     * @param _owner Address of Owner.
     * @param _ownerSetter Address of Owner Setter.
     * @param _breaker Address of Breaker.
     * @param _breakerSetter Address of Breaker Setter.
     * @param _stop Emergency or Not.
     */
    function addPool(
        string calldata _poolName,
        address[] calldata _whitelists,
        address _owner,
        address _ownerSetter,
        address _breaker,
        address _breakerSetter,
        bool _stop
    ) external onlyOwner {
        uint256 poolId = wemixDollarInfos.length;

        for (uint256 i = 0; i < _whitelists.length; ) {
            require(
                isWhitelist[_whitelists[i]] == 0,
                "WEMIX$: Address already exists."
            );
            isWhitelist[_whitelists[i]] = poolId;

            unchecked {
                i++;
            }
        }

        wemixDollarInfos.push(
            WemixDollarInfo({
                poolId: poolId,
                poolName: _poolName,
                poolTotalSupply: 0,
                whitelists: _whitelists,
                owner: _owner,
                ownerSetter: _ownerSetter,
                breaker: _breaker,
                breakerSetter: _breakerSetter,
                stop: _stop
            })
        );

        emit AddPool(
            poolId,
            _poolName,
            _whitelists,
            _owner,
            _ownerSetter,
            _breaker,
            _breakerSetter,
            _stop
        );
    }

    /* =========== WHITELIST FUNCTIONS =========== */

    /**
     * @notice Manages whitelist.
     * Whitelisted addresses can access Wemix Dollar Contract.
     * @param _poolId Pool id to add
     * @param _whitelist Whitelist address to add
     */
    function addPoolWhitelist(
        uint256 _poolId,
        address _whitelist
    )
        external
        nonZeroAddress(_whitelist)
        checkPoolExists(_poolId)
        checkNotWhitelistAddress(_whitelist)
    {
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[_poolId];

        require(
            msg.sender == wemixDollarInfo.ownerSetter,
            "WEMIX$: Caller is not OwnerSetter."
        );
        require(wemixDollarInfo.stop == false, "WEMIX$: EMERGENCY!");

        wemixDollarInfo.whitelists.push(_whitelist);

        isWhitelist[_whitelist] = _poolId;

        emit AddPoolWhitelist(_poolId, _whitelist);
    }

    /**
     * @notice Remove Pool Whitelist.
     * Whitelisted addresses can access Wemix Dollar Contract.
     * @param _poolId Pool Id.
     * @param _whitelist Whitelist address to remove.
     */
    function removePoolWhitelist(
        uint256 _poolId,
        address _whitelist
    )
        external
        nonZeroAddress(_whitelist)
        checkPoolExists(_poolId)
        checkWhitelistAddress(_poolId, _whitelist)
    {
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[_poolId];

        require(
            msg.sender == wemixDollarInfo.ownerSetter,
            "WEMIX$: Caller is not OwnerSetter."
        );
        require(wemixDollarInfo.stop == false, "WEMIX$: EMERGENCY!");

        for (uint256 i = 0; i < wemixDollarInfo.whitelists.length; ) {
            if (wemixDollarInfo.whitelists[i] == _whitelist) {
                wemixDollarInfo.whitelists[i] = wemixDollarInfo.whitelists[
                    wemixDollarInfo.whitelists.length - 1
                ];
                wemixDollarInfo.whitelists.pop();
                break;
            }
            unchecked {
                i++;
            }
        }

        isWhitelist[_whitelist] = 0;

        emit RemovePoolWhitelist(_poolId, _whitelist);
    }

    /**
     * @notice Replace Pool Whitelist.
     * Whitelisted addresses can access Wemix Dollar Contract.
     * @param _poolId Pool Id.
     * @param _whitelist Whitelist address to remove.
     * @param _newWhitelist Whitelist address to add.
     */
    function replacePoolWhitelist(
        uint256 _poolId,
        address _whitelist,
        address _newWhitelist
    )
        external
        nonZeroAddress(_whitelist)
        nonZeroAddress(_newWhitelist)
        checkWhitelistAddress(_poolId, _whitelist)
        checkNotWhitelistAddress(_newWhitelist)
    {
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[_poolId];

        require(
            msg.sender == wemixDollarInfo.ownerSetter,
            "WEMIX$: Caller is not OwnerSetter."
        );
        require(wemixDollarInfo.stop == false, "WEMIX$: EMERGENCY!");

        for (uint i = 0; i < wemixDollarInfo.whitelists.length; ) {
            if (wemixDollarInfo.whitelists[i] == _whitelist) {
                wemixDollarInfo.whitelists[i] = _newWhitelist;
                break;
            }
            unchecked {
                i++;
            }
        }

        isWhitelist[_whitelist] = 0;
        isWhitelist[_newWhitelist] = _poolId;

        emit AddPoolWhitelist(_poolId, _newWhitelist);
        emit RemovePoolWhitelist(_poolId, _whitelist);
    }

    /* =========== SET FUNCTIONS =========== */

    /**
     * @notice Set Pool Owner.
     * @param _poolId Pool Id.
     * @param _owner Address of Owner.
     */
    function setPoolOwner(
        uint256 _poolId,
        address _owner
    ) external nonZeroAddress(_owner) checkPoolExists(_poolId) {
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[_poolId];

        require(
            msg.sender == wemixDollarInfo.ownerSetter,
            "WEMIX$: Caller is not OwnerSetter."
        );
        require(wemixDollarInfo.stop == false, "WEMIX$: EMERGENCY!");

        wemixDollarInfo.owner = _owner;

        emit SetPoolOwner(_poolId, _owner);
    }

    /**
     * @notice Set Pool Owner Setter.
     * @param _poolId Pool Id.
     * @param _ownerSetter Address of Owner Setter.
     */
    function setPoolOwnerSetter(
        uint256 _poolId,
        address _ownerSetter
    ) external nonZeroAddress(_ownerSetter) checkPoolExists(_poolId) {
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[_poolId];

        require(
            msg.sender == wemixDollarInfo.ownerSetter,
            "WEMIX$: Caller is not OwnerSetter."
        );
        require(wemixDollarInfo.stop == false, "WEMIX$: EMERGENCY!");

        wemixDollarInfo.ownerSetter = _ownerSetter;

        emit SetPoolOwnerSetter(_poolId, _ownerSetter);
    }

    /**
     * @notice Set Pool Breaker.
     * @param _poolId Pool Id.
     * @param _breaker Address of Breaker.
     */
    function setPoolBreaker(
        uint256 _poolId,
        address _breaker
    ) external nonZeroAddress(_breaker) checkPoolExists(_poolId) {
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[_poolId];

        require(
            msg.sender == wemixDollarInfo.breakerSetter,
            "WEMIX$: Caller is not BreakerSetter."
        );
        require(wemixDollarInfo.stop == false, "WEMIX$: EMERGENCY!");

        wemixDollarInfo.breaker = _breaker;

        emit SetPoolBreaker(_poolId, _breaker);
    }

    /**
     * @notice Set Pool Breaker Setter.
     * @param _poolId Pool Id.
     * @param _breakerSetter Address of Breaker Setter.
     */
    function setPoolBreakerSetter(
        uint256 _poolId,
        address _breakerSetter
    ) external nonZeroAddress(_breakerSetter) checkPoolExists(_poolId) {
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[_poolId];

        require(
            msg.sender == wemixDollarInfo.breakerSetter,
            "WEMIX$: Caller is not BreakerSetter."
        );
        require(wemixDollarInfo.stop == false, "WEMIX$: EMERGENCY!");

        wemixDollarInfo.breakerSetter = _breakerSetter;

        emit SetPoolBreakerSetter(_poolId, _breakerSetter);
    }

    /* =========== BREAKE FUNCTIONS =========== */

    /**
     * @notice Stop DIOS contract.
     * @param _poolId Pool Id.
     */
    function stopContract(uint256 _poolId) external checkPoolExists(_poolId) {
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[_poolId];

        require(
            msg.sender == wemixDollarInfo.breaker,
            "WEMIX$: Caller is not Breaker."
        );
        require(wemixDollarInfo.stop == false, "WEMIX$: EMERGENCY!");

        wemixDollarInfo.stop = true;

        emit StopContract(_poolId);
    }

    /**
     * @notice Resume DIOS contract.
     * @param _poolId Pool Id.
     */
    function resumeContract(uint256 _poolId) external checkPoolExists(_poolId) {
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[_poolId];

        require(
            msg.sender == wemixDollarInfo.breaker,
            "WEMIX$: Caller is not Breaker."
        );
        require(wemixDollarInfo.stop == true, "WEMIX$: NOT EMERGENCY!");

        wemixDollarInfo.stop = false;

        emit ResumeContract(_poolId);
    }

    /* ========== VIEW FUNCTION ========== */

    /**
     * @notice Get Wemix Dollar Infomation.
     * @param _poolId Pool Id.
     */
    function getWemixDollarInfo(
        uint256 _poolId
    )
        public
        view
        returns (
            uint256,
            string memory,
            uint256,
            address[] memory,
            address,
            address,
            address,
            address,
            bool
        )
    {
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[_poolId];

        return (
            wemixDollarInfo.poolId,
            wemixDollarInfo.poolName,
            wemixDollarInfo.poolTotalSupply,
            wemixDollarInfo.whitelists,
            wemixDollarInfo.owner,
            wemixDollarInfo.ownerSetter,
            wemixDollarInfo.breaker,
            wemixDollarInfo.breakerSetter,
            wemixDollarInfo.stop
        );
    }

    /**
     * @notice Get Wemix Dollar Infomation Count.
     */
    function getWemixDollarInfoCount() public view returns (uint256) {
        return wemixDollarInfos.length;
    }

    /**
     * @notice Get Whitelist Address.
     * @param _poolId Pool Id.
     */
    function getWhitelistAddress(
        uint256 _poolId
    ) public view returns (address[] memory) {
        WemixDollarInfo storage wemixDollarInfo = wemixDollarInfos[_poolId];

        return wemixDollarInfo.whitelists;
    }

    /**
     * @notice Get Whitelist Address Count.
     * @param _poolId Pool Id.
     */
    function getWhitelistAddressCount(
        uint256 _poolId
    ) public view returns (uint256) {
        WemixDollarInfo memory wemixDollarInfo = wemixDollarInfos[_poolId];

        return wemixDollarInfo.whitelists.length;
    }

    /* =========== MODIFIERS =========== */

    modifier nonZeroAddress(address dollarInAndOutStaking) {
        require(
            dollarInAndOutStaking != address(0),
            "WEMIX$: DIOS Address cannot be 0."
        );
        _;
    }

    modifier checkPoolExists(uint256 poolId) {
        require(poolId != uint256(0), "WEMIX$: poolId cannot be 0.");
        require(
            wemixDollarInfos.length >= poolId,
            "WEMIX$: WemixDollarInfos length must be greater than or equal to poolId"
        );
        _;
    }

    modifier isWhitelistAddress() {
        require(
            isWhitelist[msg.sender] != 0,
            "WEMIX$: Address does not exist."
        );
        _;
    }

    modifier checkWhitelistAddress(uint256 poolId, address whitelist) {
        require(
            isWhitelist[whitelist] == poolId,
            "WEMIX$: Address does not exist."
        );
        _;
    }

    modifier checkNotWhitelistAddress(address whitelist) {
        require(isWhitelist[whitelist] == 0, "WEMIX$: Address already exists.");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"string","name":"poolName","type":"string"},{"indexed":false,"internalType":"address[]","name":"whitelists","type":"address[]"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"address","name":"ownerSetter","type":"address"},{"indexed":false,"internalType":"address","name":"breaker","type":"address"},{"indexed":false,"internalType":"address","name":"breakerSetter","type":"address"},{"indexed":false,"internalType":"bool","name":"stop","type":"bool"}],"name":"AddPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"address","name":"whitelist","type":"address"}],"name":"AddPoolWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"address","name":"whitelist","type":"address"}],"name":"RemovePoolWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"}],"name":"ResumeContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"address","name":"breaker","type":"address"}],"name":"SetPoolBreaker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"address","name":"breakerSetter","type":"address"}],"name":"SetPoolBreakerSetter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"SetPoolOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"address","name":"ownerSetter","type":"address"}],"name":"SetPoolOwnerSetter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"}],"name":"StopContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"}],"name":"WemixDollarBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"}],"name":"WemixDollarMinted","type":"event"},{"inputs":[{"internalType":"string","name":"_poolName","type":"string"},{"internalType":"address[]","name":"_whitelists","type":"address[]"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_ownerSetter","type":"address"},{"internalType":"address","name":"_breaker","type":"address"},{"internalType":"address","name":"_breakerSetter","type":"address"},{"internalType":"bool","name":"_stop","type":"bool"}],"name":"addPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_whitelist","type":"address"}],"name":"addPoolWhitelist","outputs":[],"stateMutability":"nonpayable","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":"amount","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":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getWemixDollarInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWemixDollarInfoCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getWhitelistAddress","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getWhitelistAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_whitelist","type":"address"}],"name":"removePoolWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_whitelist","type":"address"},{"internalType":"address","name":"_newWhitelist","type":"address"}],"name":"replacePoolWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"resumeContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_breaker","type":"address"}],"name":"setPoolBreaker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_breakerSetter","type":"address"}],"name":"setPoolBreakerSetter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_owner","type":"address"}],"name":"setPoolOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_ownerSetter","type":"address"}],"name":"setPoolOwnerSetter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"stopContract","outputs":[],"stateMutability":"nonpayable","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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wemixDollarInfos","outputs":[{"internalType":"uint256","name":"poolId","type":"uint256"},{"internalType":"string","name":"poolName","type":"string"},{"internalType":"uint256","name":"poolTotalSupply","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"ownerSetter","type":"address"},{"internalType":"address","name":"breaker","type":"address"},{"internalType":"address","name":"breakerSetter","type":"address"},{"internalType":"bool","name":"stop","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060408051808201825260068082526515d15352560960d21b602080840182815285518087019096529285528401528151919291620000539160039162000279565b5080516200006990600490602084019062000279565b50505062000086620000806200022360201b60201c565b62000227565b60408051600080825261014082018352602080830182815284518086018652600b81526a15d1535256090b5413d3d360aa1b81840152948401948552606084018390526080840184905260a0840183905260c0840183905260e08401839052610100840183905260016101208501819052600680549182018155909352805160089093027ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f810193845594518051949591946200016d937ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4090930192919091019062000279565b5060408201516002820155606082015180516200019591600384019160209091019062000308565b5060808201516004820180546001600160a01b03199081166001600160a01b039384161790915560a0840151600584018054831691841691909117905560c084015160068401805490921690831617905560e08301516007909201805461010090940151929091166001600160a81b031990931692909217600160a01b9115159190910217905550620003b4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002879062000377565b90600052602060002090601f016020900481019282620002ab5760008555620002f6565b82601f10620002c657805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f6578251825591602001919060010190620002d9565b506200030492915062000360565b5090565b828054828255906000526020600020908101928215620002f6579160200282015b82811115620002f657825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000329565b5b8082111562000304576000815560010162000361565b600181811c908216806200038c57607f821691505b60208210811415620003ae57634e487b7160e01b600052602260045260246000fd5b50919050565b612d9280620003c46000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80637d3824d91161010f578063a78e2f2d116100a2578063c683630d11610071578063c683630d14610454578063dd62ed3e14610474578063ec4f052a14610487578063f2fde38b1461049a57600080fd5b8063a78e2f2d14610413578063a9059cbb14610426578063ae0ce49814610439578063bc59d5031461044157600080fd5b806395d89b41116100de57806395d89b41146103d25780639c63739a146103da5780639dc29fac146103ed578063a457c2d71461040057600080fd5b80637d3824d914610369578063828298bd1461037c578063874e5299146103a45780638da5cb5b146103b757600080fd5b80633fab3b9111610187578063565853af11610156578063565853af146103055780636365530e1461032557806370a0823114610338578063715018a61461036157600080fd5b80633fab3b91146102b957806340c10f19146102cc57806350f63fe7146102df57806352202b0a146102f257600080fd5b806323b872dd116101c357806323b872dd1461025d5780632acabf3e14610270578063313ce5671461029757806339509351146102a657600080fd5b806303d19032146101f557806306fdde031461020a578063095ea7b31461022857806318160ddd1461024b575b600080fd5b61020861020336600461264e565b6104ad565b005b610212610779565b60405161021f9190612788565b60405180910390f35b61023b6102363660046127a2565b61080b565b604051901515815260200161021f565b6002545b60405190815260200161021f565b61023b61026b3660046127cc565b610823565b61028361027e366004612808565b610847565b60405161021f989796959493929190612821565b6040516012815260200161021f565b61023b6102b43660046127a2565b61093b565b6102086102c736600461287c565b61095d565b6102086102da3660046127a2565b610afd565b6102086102ed36600461287c565b610c03565b61020861030036600461287c565b610d4c565b610318610313366004612808565b610e8a565b60405161021f91906128ec565b61020861033336600461287c565b610f16565b61024f6103463660046128ff565b6001600160a01b031660009081526020819052604090205490565b610208611054565b61020861037736600461287c565b611068565b61038f61038a366004612808565b6111a6565b60405161021f9998979695949392919061291a565b6102086103b236600461298c565b61132e565b6005546040516001600160a01b03909116815260200161021f565b6102126115b9565b61024f6103e8366004612808565b6115c8565b6102086103fb3660046127a2565b61175a565b61023b61040e3660046127a2565b611856565b610208610421366004612808565b6118d1565b61023b6104343660046127a2565b611a36565b60065461024f565b61020861044f366004612808565b611a44565b61024f6104623660046128ff565b60076020526000908152604090205481565b61024f6104823660046129c8565b611b7b565b61020861049536600461287c565b611ba6565b6102086104a83660046128ff565b611e31565b6104b5611eaa565b60065460005b8781101561057c57600760008a8a848181106104d9576104d96129f2565b90506020020160208101906104ee91906128ff565b6001600160a01b031681526020810191909152604001600020541561052e5760405162461bcd60e51b815260040161052590612a08565b60405180910390fd5b81600760008b8b85818110610545576105456129f2565b905060200201602081019061055a91906128ff565b6001600160a01b031681526020810191909152604001600020556001016104bb565b5060066040518061012001604052808381526020018c8c8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250938552505050602080830191909152604080518c8302818101840183528d82529190930192918d918d9182919085019084908082843760009201829052509385525050506001600160a01b03808b166020808501919091528a821660408501528982166060850152908816608084015286151560a09093019290925283546001818101865594825290829020835160089092020190815582820151805193949193610676939285019291909101906124e8565b50604082015160028201556060820151805161069c91600384019160209091019061256c565b5060808201516004820180546001600160a01b03199081166001600160a01b039384161790915560a0840151600584018054831691841691909117905560c084015160068401805490921690831617905560e08301516007909201805461010090940151929091166001600160a81b031990931692909217600160a01b911515919091021790556040517f9329e5b15842a818b22b4f72136262697e6a2acb38fabe63f72d9dd079a7bbff906107659083908d908d908d908d908d908d908d908d908d90612a3f565b60405180910390a150505050505050505050565b60606003805461078890612af8565b80601f01602080910402602001604051908101604052809291908181526020018280546107b490612af8565b80156108015780601f106107d657610100808354040283529160200191610801565b820191906000526020600020905b8154815290600101906020018083116107e457829003601f168201915b5050505050905090565b600033610819818585611f04565b5060019392505050565b600033610831858285612029565b61083c8585856120a3565b506001949350505050565b6006818154811061085757600080fd5b6000918252602090912060089091020180546001820180549193509061087c90612af8565b80601f01602080910402602001604051908101604052809291908181526020018280546108a890612af8565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b505050506002830154600484015460058501546006860154600790960154949592946001600160a01b03928316945090821692821691811690600160a01b900460ff1688565b60003361081981858561094e8383611b7b565b6109589190612b49565b611f04565b806001600160a01b0381166109845760405162461bcd60e51b815260040161052590612b61565b82806109a25760405162461bcd60e51b815260040161052590612ba2565b6006548111156109c45760405162461bcd60e51b815260040161052590612bd9565b6001600160a01b0383166000908152600760205260409020548390156109fc5760405162461bcd60e51b815260040161052590612a08565b600060068681548110610a1157610a116129f2565b6000918252602090912060089091020160058101549091506001600160a01b03163314610a505760405162461bcd60e51b815260040161052590612c46565b6007810154600160a01b900460ff1615610a7c5760405162461bcd60e51b815260040161052590612c88565b6003810180546001810182556000918252602080832090910180546001600160a01b0319166001600160a01b038916908117909155808352600782526040928390208990558251898152918201527f5f7bf5a6535d2f3b9b2649a02c1afaa7b46a85ac2bc0bac26dc979747762b96b910160405180910390a1505050505050565b33600090815260076020526040902054610b295760405162461bcd60e51b815260040161052590612cb4565b336000908152600760205260408120546006805491929183908110610b5057610b506129f2565b600091825260209091206008909102016007810154909150600160a01b900460ff1615610b8f5760405162461bcd60e51b815260040161052590612c88565b610b998484612271565b82816002016000828254610bad9190612b49565b9091555050604080516001600160a01b0386168152602081018590529081018390527f13880874a82a6b61d937203f39eb8a30bf92ef5a373f913c3bada342438b4a80906060015b60405180910390a150505050565b806001600160a01b038116610c2a5760405162461bcd60e51b815260040161052590612b61565b8280610c485760405162461bcd60e51b815260040161052590612ba2565b600654811115610c6a5760405162461bcd60e51b815260040161052590612bd9565b600060068581548110610c7f57610c7f6129f2565b6000918252602090912060089091020160058101549091506001600160a01b03163314610cbe5760405162461bcd60e51b815260040161052590612c46565b6007810154600160a01b900460ff1615610cea5760405162461bcd60e51b815260040161052590612c88565b6005810180546001600160a01b0319166001600160a01b0386169081179091556040805187815260208101929092527f7bd3dbd617f5f18a97d85d4a0b17ca7f1f567a7dacbadbbec5b9cea34f46af3c91015b60405180910390a15050505050565b806001600160a01b038116610d735760405162461bcd60e51b815260040161052590612b61565b8280610d915760405162461bcd60e51b815260040161052590612ba2565b600654811115610db35760405162461bcd60e51b815260040161052590612bd9565b600060068581548110610dc857610dc86129f2565b6000918252602090912060089091020160058101549091506001600160a01b03163314610e075760405162461bcd60e51b815260040161052590612c46565b6007810154600160a01b900460ff1615610e335760405162461bcd60e51b815260040161052590612c88565b6004810180546001600160a01b0319166001600160a01b0386169081179091556040805187815260208101929092527ff87e07c03fe1220193f248d7937e558545020f9304702037cc5412451abfc3639101610d3d565b6060600060068381548110610ea157610ea16129f2565b9060005260206000209060080201905080600301805480602002602001604051908101604052809291908181526020018280548015610f0957602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610eeb575b5050505050915050919050565b806001600160a01b038116610f3d5760405162461bcd60e51b815260040161052590612b61565b8280610f5b5760405162461bcd60e51b815260040161052590612ba2565b600654811115610f7d5760405162461bcd60e51b815260040161052590612bd9565b600060068581548110610f9257610f926129f2565b6000918252602090912060089091020160078101549091506001600160a01b03163314610fd15760405162461bcd60e51b815260040161052590612ceb565b6007810154600160a01b900460ff1615610ffd5760405162461bcd60e51b815260040161052590612c88565b6007810180546001600160a01b0319166001600160a01b0386169081179091556040805187815260208101929092527f7fc7b82c46c9f322f2a9c3ab999a39ba8230b89e3173adfde268967405ebb2df9101610d3d565b61105c611eaa565b6110666000612350565b565b806001600160a01b03811661108f5760405162461bcd60e51b815260040161052590612b61565b82806110ad5760405162461bcd60e51b815260040161052590612ba2565b6006548111156110cf5760405162461bcd60e51b815260040161052590612bd9565b6000600685815481106110e4576110e46129f2565b6000918252602090912060089091020160078101549091506001600160a01b031633146111235760405162461bcd60e51b815260040161052590612ceb565b6007810154600160a01b900460ff161561114f5760405162461bcd60e51b815260040161052590612c88565b6006810180546001600160a01b0319166001600160a01b0386169081179091556040805187815260208101929092527f70d216e53bba32c29a3424ecf8aa15aad290eb6525997dd33ea324dfd9cd53399101610d3d565b600060606000606060008060008060008060068b815481106111ca576111ca6129f2565b60009182526020909120600890910201805460028201546004830154600584015460068501546007860154600187018054979850959660038901946001600160a01b039081169481169381169290811691600160a01b90910460ff1690889061123290612af8565b80601f016020809104026020016040519081016040528092919081815260200182805461125e90612af8565b80156112ab5780601f10611280576101008083540402835291602001916112ab565b820191906000526020600020905b81548152906001019060200180831161128e57829003601f168201915b505050505097508580548060200260200160405190810160405280929190818152602001828054801561130757602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116112e9575b50505050509550995099509950995099509950995099509950509193959799909294969850565b816001600160a01b0381166113555760405162461bcd60e51b815260040161052590612b61565b816001600160a01b03811661137c5760405162461bcd60e51b815260040161052590612b61565b6001600160a01b0384166000908152600760205260409020548590859082146113b75760405162461bcd60e51b815260040161052590612cb4565b6001600160a01b0385166000908152600760205260409020548590156113ef5760405162461bcd60e51b815260040161052590612a08565b600060068981548110611404576114046129f2565b6000918252602090912060089091020160058101549091506001600160a01b031633146114435760405162461bcd60e51b815260040161052590612c46565b6007810154600160a01b900460ff161561146f5760405162461bcd60e51b815260040161052590612c88565b60005b600382015481101561150957886001600160a01b031682600301828154811061149d5761149d6129f2565b6000918252602090912001546001600160a01b0316141561150157878260030182815481106114ce576114ce6129f2565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550611509565b600101611472565b506001600160a01b038881166000908152600760209081526040808320839055928a16808352918390208c905582518c8152908101919091527f5f7bf5a6535d2f3b9b2649a02c1afaa7b46a85ac2bc0bac26dc979747762b96b910160405180910390a1604080518a81526001600160a01b038a1660208201527fe1938c7173044f254b823afeeca186e2d18319fb30e37e0e4de6277a52d29106910160405180910390a1505050505050505050565b60606004805461078890612af8565b600080600683815481106115de576115de6129f2565b9060005260206000209060080201604051806101200160405290816000820154815260200160018201805461161290612af8565b80601f016020809104026020016040519081016040528092919081815260200182805461163e90612af8565b801561168b5780601f106116605761010080835404028352916020019161168b565b820191906000526020600020905b81548152906001019060200180831161166e57829003601f168201915b5050505050815260200160028201548152602001600382018054806020026020016040519081016040528092919081815260200182805480156116f757602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116116d9575b505050918352505060048201546001600160a01b039081166020830152600583015481166040830152600683015481166060808401919091526007909301549081166080830152600160a01b900460ff16151560a0909101520151519392505050565b336000908152600760205260409020546117865760405162461bcd60e51b815260040161052590612cb4565b3360009081526007602052604081205460068054919291839081106117ad576117ad6129f2565b600091825260209091206008909102016007810154909150600160a01b900460ff16156117ec5760405162461bcd60e51b815260040161052590612c88565b6117f684846123a2565b8281600201600082825461180a9190612d2f565b9091555050604080516001600160a01b0386168152602081018590529081018390527fa3724ce1d4d5f628abdec7ee4d063f2111d074566122a66514e20939c9ebd69390606001610bf5565b600033816118648286611b7b565b9050838110156118c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610525565b61083c8286868403611f04565b80806118ef5760405162461bcd60e51b815260040161052590612ba2565b6006548111156119115760405162461bcd60e51b815260040161052590612bd9565b600060068381548110611926576119266129f2565b6000918252602090912060089091020160068101549091506001600160a01b031633146119955760405162461bcd60e51b815260206004820152601e60248201527f57454d4958243a2043616c6c6572206973206e6f7420427265616b65722e00006044820152606401610525565b6007810154600160a01b900460ff1615156001146119ee5760405162461bcd60e51b815260206004820152601660248201527557454d4958243a204e4f5420454d455247454e43592160501b6044820152606401610525565b60078101805460ff60a01b191690556040518381527fd3b27aa7927629b0fe961a7f5ac65c9a1dd990a0bdfa1962108af3ab4aa22d8a906020015b60405180910390a1505050565b6000336108198185856120a3565b8080611a625760405162461bcd60e51b815260040161052590612ba2565b600654811115611a845760405162461bcd60e51b815260040161052590612bd9565b600060068381548110611a9957611a996129f2565b6000918252602090912060089091020160068101549091506001600160a01b03163314611b085760405162461bcd60e51b815260206004820152601e60248201527f57454d4958243a2043616c6c6572206973206e6f7420427265616b65722e00006044820152606401610525565b6007810154600160a01b900460ff1615611b345760405162461bcd60e51b815260040161052590612c88565b60078101805460ff60a01b1916600160a01b1790556040517f94ef9a71caf532caf20b1f9820d83dc5d252c51ec150f608e4974a955cb33f4790611a299085815260200190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b806001600160a01b038116611bcd5760405162461bcd60e51b815260040161052590612b61565b8280611beb5760405162461bcd60e51b815260040161052590612ba2565b600654811115611c0d5760405162461bcd60e51b815260040161052590612bd9565b6001600160a01b038316600090815260076020526040902054849084908214611c485760405162461bcd60e51b815260040161052590612cb4565b600060068781548110611c5d57611c5d6129f2565b6000918252602090912060089091020160058101549091506001600160a01b03163314611c9c5760405162461bcd60e51b815260040161052590612c46565b6007810154600160a01b900460ff1615611cc85760405162461bcd60e51b815260040161052590612c88565b60005b6003820154811015611dd157866001600160a01b0316826003018281548110611cf657611cf66129f2565b6000918252602090912001546001600160a01b03161415611dc957600382018054611d2390600190612d2f565b81548110611d3357611d336129f2565b6000918252602090912001546003830180546001600160a01b039092169183908110611d6157611d616129f2565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600301805480611da257611da2612d46565b600082815260209020810160001990810180546001600160a01b0319169055019055611dd1565b600101611ccb565b506001600160a01b03861660008181526007602090815260408083209290925581518a8152908101929092527fe1938c7173044f254b823afeeca186e2d18319fb30e37e0e4de6277a52d29106910160405180910390a150505050505050565b611e39611eaa565b6001600160a01b038116611e9e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610525565b611ea781612350565b50565b6005546001600160a01b031633146110665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610525565b6001600160a01b038316611f665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610525565b6001600160a01b038216611fc75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610525565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006120358484611b7b565b9050600019811461209d57818110156120905760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610525565b61209d8484848403611f04565b50505050565b6001600160a01b0383166121075760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610525565b6001600160a01b0382166121695760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610525565b6001600160a01b038316600090815260208190526040902054818110156121e15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610525565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612218908490612b49565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161226491815260200190565b60405180910390a361209d565b6001600160a01b0382166122c75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610525565b80600260008282546122d99190612b49565b90915550506001600160a01b03821660009081526020819052604081208054839290612306908490612b49565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166124025760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610525565b6001600160a01b038216600090815260208190526040902054818110156124765760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610525565b6001600160a01b03831660009081526020819052604081208383039055600280548492906124a5908490612d2f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161201c565b8280546124f490612af8565b90600052602060002090601f016020900481019282612516576000855561255c565b82601f1061252f57805160ff191683800117855561255c565b8280016001018555821561255c579182015b8281111561255c578251825591602001919060010190612541565b506125689291506125c1565b5090565b82805482825590600052602060002090810192821561255c579160200282015b8281111561255c57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061258c565b5b8082111561256857600081556001016125c2565b60008083601f8401126125e857600080fd5b50813567ffffffffffffffff81111561260057600080fd5b6020830191508360208260051b850101111561261b57600080fd5b9250929050565b80356001600160a01b038116811461263957600080fd5b919050565b8035801515811461263957600080fd5b600080600080600080600080600060e08a8c03121561266c57600080fd5b893567ffffffffffffffff8082111561268457600080fd5b818c0191508c601f83011261269857600080fd5b8135818111156126a757600080fd5b8d60208285010111156126b957600080fd5b60209283019b509950908b013590808211156126d457600080fd5b506126e18c828d016125d6565b90985096506126f4905060408b01612622565b945061270260608b01612622565b935061271060808b01612622565b925061271e60a08b01612622565b915061272c60c08b0161263e565b90509295985092959850929598565b6000815180845260005b8181101561276157602081850181015186830182015201612745565b81811115612773576000602083870101525b50601f01601f19169290920160200192915050565b60208152600061279b602083018461273b565b9392505050565b600080604083850312156127b557600080fd5b6127be83612622565b946020939093013593505050565b6000806000606084860312156127e157600080fd5b6127ea84612622565b92506127f860208501612622565b9150604084013590509250925092565b60006020828403121561281a57600080fd5b5035919050565b60006101008a835280602084015261283b8184018b61273b565b604084019990995250506001600160a01b039586166060820152938516608085015291841660a084015290921660c082015290151560e09091015292915050565b6000806040838503121561288f57600080fd5b8235915061289f60208401612622565b90509250929050565b600081518084526020808501945080840160005b838110156128e15781516001600160a01b0316875295820195908201906001016128bc565b509495945050505050565b60208152600061279b60208301846128a8565b60006020828403121561291157600080fd5b61279b82612622565b60006101208b83528060208401526129348184018c61273b565b9050896040840152828103606084015261294e818a6128a8565b6001600160a01b03988916608085015296881660a0840152505092851660c0840152931660e082015291151561010090920191909152949350505050565b6000806000606084860312156129a157600080fd5b833592506129b160208501612622565b91506129bf60408501612622565b90509250925092565b600080604083850312156129db57600080fd5b6129e483612622565b915061289f60208401612622565b634e487b7160e01b600052603260045260246000fd5b6020808252601f908201527f57454d4958243a204164647265737320616c7265616479206578697374732e00604082015260600190565b60006101008c8352602081818501528b8285015261012091508b8d838601376000848d018301819052601f8d01601f19168501858103840160408701529283018b9052610140909201918b905b8b811015612ab8576001600160a01b03612aa583612622565b1684529282019290820190600101612a8c565b5050506001600160a01b03978816606084015295871660808301525092851660a0840152931660c082015291151560e09092019190915295945050505050565b600181811c90821680612b0c57607f821691505b60208210811415612b2d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612b5c57612b5c612b33565b500190565b60208082526021908201527f57454d4958243a2044494f5320416464726573732063616e6e6f7420626520306040820152601760f91b606082015260800190565b6020808252601b908201527f57454d4958243a20706f6f6c49642063616e6e6f7420626520302e0000000000604082015260600190565b60208082526047908201527f57454d4958243a2057656d6978446f6c6c6172496e666f73206c656e6774682060408201527f6d7573742062652067726561746572207468616e206f7220657175616c20746f606082015266081c1bdbdb125960ca1b608082015260a00190565b60208082526022908201527f57454d4958243a2043616c6c6572206973206e6f74204f776e65725365747465604082015261391760f11b606082015260800190565b60208082526012908201527157454d4958243a20454d455247454e43592160701b604082015260600190565b6020808252601f908201527f57454d4958243a204164647265737320646f6573206e6f742065786973742e00604082015260600190565b60208082526024908201527f57454d4958243a2043616c6c6572206973206e6f7420427265616b65725365746040820152633a32b91760e11b606082015260800190565b600082821015612d4157612d41612b33565b500390565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220971f630af5a30005a14f1cc34f61462f5cc321b223d3cc5646213c210ccf0edb64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80637d3824d91161010f578063a78e2f2d116100a2578063c683630d11610071578063c683630d14610454578063dd62ed3e14610474578063ec4f052a14610487578063f2fde38b1461049a57600080fd5b8063a78e2f2d14610413578063a9059cbb14610426578063ae0ce49814610439578063bc59d5031461044157600080fd5b806395d89b41116100de57806395d89b41146103d25780639c63739a146103da5780639dc29fac146103ed578063a457c2d71461040057600080fd5b80637d3824d914610369578063828298bd1461037c578063874e5299146103a45780638da5cb5b146103b757600080fd5b80633fab3b9111610187578063565853af11610156578063565853af146103055780636365530e1461032557806370a0823114610338578063715018a61461036157600080fd5b80633fab3b91146102b957806340c10f19146102cc57806350f63fe7146102df57806352202b0a146102f257600080fd5b806323b872dd116101c357806323b872dd1461025d5780632acabf3e14610270578063313ce5671461029757806339509351146102a657600080fd5b806303d19032146101f557806306fdde031461020a578063095ea7b31461022857806318160ddd1461024b575b600080fd5b61020861020336600461264e565b6104ad565b005b610212610779565b60405161021f9190612788565b60405180910390f35b61023b6102363660046127a2565b61080b565b604051901515815260200161021f565b6002545b60405190815260200161021f565b61023b61026b3660046127cc565b610823565b61028361027e366004612808565b610847565b60405161021f989796959493929190612821565b6040516012815260200161021f565b61023b6102b43660046127a2565b61093b565b6102086102c736600461287c565b61095d565b6102086102da3660046127a2565b610afd565b6102086102ed36600461287c565b610c03565b61020861030036600461287c565b610d4c565b610318610313366004612808565b610e8a565b60405161021f91906128ec565b61020861033336600461287c565b610f16565b61024f6103463660046128ff565b6001600160a01b031660009081526020819052604090205490565b610208611054565b61020861037736600461287c565b611068565b61038f61038a366004612808565b6111a6565b60405161021f9998979695949392919061291a565b6102086103b236600461298c565b61132e565b6005546040516001600160a01b03909116815260200161021f565b6102126115b9565b61024f6103e8366004612808565b6115c8565b6102086103fb3660046127a2565b61175a565b61023b61040e3660046127a2565b611856565b610208610421366004612808565b6118d1565b61023b6104343660046127a2565b611a36565b60065461024f565b61020861044f366004612808565b611a44565b61024f6104623660046128ff565b60076020526000908152604090205481565b61024f6104823660046129c8565b611b7b565b61020861049536600461287c565b611ba6565b6102086104a83660046128ff565b611e31565b6104b5611eaa565b60065460005b8781101561057c57600760008a8a848181106104d9576104d96129f2565b90506020020160208101906104ee91906128ff565b6001600160a01b031681526020810191909152604001600020541561052e5760405162461bcd60e51b815260040161052590612a08565b60405180910390fd5b81600760008b8b85818110610545576105456129f2565b905060200201602081019061055a91906128ff565b6001600160a01b031681526020810191909152604001600020556001016104bb565b5060066040518061012001604052808381526020018c8c8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250938552505050602080830191909152604080518c8302818101840183528d82529190930192918d918d9182919085019084908082843760009201829052509385525050506001600160a01b03808b166020808501919091528a821660408501528982166060850152908816608084015286151560a09093019290925283546001818101865594825290829020835160089092020190815582820151805193949193610676939285019291909101906124e8565b50604082015160028201556060820151805161069c91600384019160209091019061256c565b5060808201516004820180546001600160a01b03199081166001600160a01b039384161790915560a0840151600584018054831691841691909117905560c084015160068401805490921690831617905560e08301516007909201805461010090940151929091166001600160a81b031990931692909217600160a01b911515919091021790556040517f9329e5b15842a818b22b4f72136262697e6a2acb38fabe63f72d9dd079a7bbff906107659083908d908d908d908d908d908d908d908d908d90612a3f565b60405180910390a150505050505050505050565b60606003805461078890612af8565b80601f01602080910402602001604051908101604052809291908181526020018280546107b490612af8565b80156108015780601f106107d657610100808354040283529160200191610801565b820191906000526020600020905b8154815290600101906020018083116107e457829003601f168201915b5050505050905090565b600033610819818585611f04565b5060019392505050565b600033610831858285612029565b61083c8585856120a3565b506001949350505050565b6006818154811061085757600080fd5b6000918252602090912060089091020180546001820180549193509061087c90612af8565b80601f01602080910402602001604051908101604052809291908181526020018280546108a890612af8565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b505050506002830154600484015460058501546006860154600790960154949592946001600160a01b03928316945090821692821691811690600160a01b900460ff1688565b60003361081981858561094e8383611b7b565b6109589190612b49565b611f04565b806001600160a01b0381166109845760405162461bcd60e51b815260040161052590612b61565b82806109a25760405162461bcd60e51b815260040161052590612ba2565b6006548111156109c45760405162461bcd60e51b815260040161052590612bd9565b6001600160a01b0383166000908152600760205260409020548390156109fc5760405162461bcd60e51b815260040161052590612a08565b600060068681548110610a1157610a116129f2565b6000918252602090912060089091020160058101549091506001600160a01b03163314610a505760405162461bcd60e51b815260040161052590612c46565b6007810154600160a01b900460ff1615610a7c5760405162461bcd60e51b815260040161052590612c88565b6003810180546001810182556000918252602080832090910180546001600160a01b0319166001600160a01b038916908117909155808352600782526040928390208990558251898152918201527f5f7bf5a6535d2f3b9b2649a02c1afaa7b46a85ac2bc0bac26dc979747762b96b910160405180910390a1505050505050565b33600090815260076020526040902054610b295760405162461bcd60e51b815260040161052590612cb4565b336000908152600760205260408120546006805491929183908110610b5057610b506129f2565b600091825260209091206008909102016007810154909150600160a01b900460ff1615610b8f5760405162461bcd60e51b815260040161052590612c88565b610b998484612271565b82816002016000828254610bad9190612b49565b9091555050604080516001600160a01b0386168152602081018590529081018390527f13880874a82a6b61d937203f39eb8a30bf92ef5a373f913c3bada342438b4a80906060015b60405180910390a150505050565b806001600160a01b038116610c2a5760405162461bcd60e51b815260040161052590612b61565b8280610c485760405162461bcd60e51b815260040161052590612ba2565b600654811115610c6a5760405162461bcd60e51b815260040161052590612bd9565b600060068581548110610c7f57610c7f6129f2565b6000918252602090912060089091020160058101549091506001600160a01b03163314610cbe5760405162461bcd60e51b815260040161052590612c46565b6007810154600160a01b900460ff1615610cea5760405162461bcd60e51b815260040161052590612c88565b6005810180546001600160a01b0319166001600160a01b0386169081179091556040805187815260208101929092527f7bd3dbd617f5f18a97d85d4a0b17ca7f1f567a7dacbadbbec5b9cea34f46af3c91015b60405180910390a15050505050565b806001600160a01b038116610d735760405162461bcd60e51b815260040161052590612b61565b8280610d915760405162461bcd60e51b815260040161052590612ba2565b600654811115610db35760405162461bcd60e51b815260040161052590612bd9565b600060068581548110610dc857610dc86129f2565b6000918252602090912060089091020160058101549091506001600160a01b03163314610e075760405162461bcd60e51b815260040161052590612c46565b6007810154600160a01b900460ff1615610e335760405162461bcd60e51b815260040161052590612c88565b6004810180546001600160a01b0319166001600160a01b0386169081179091556040805187815260208101929092527ff87e07c03fe1220193f248d7937e558545020f9304702037cc5412451abfc3639101610d3d565b6060600060068381548110610ea157610ea16129f2565b9060005260206000209060080201905080600301805480602002602001604051908101604052809291908181526020018280548015610f0957602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610eeb575b5050505050915050919050565b806001600160a01b038116610f3d5760405162461bcd60e51b815260040161052590612b61565b8280610f5b5760405162461bcd60e51b815260040161052590612ba2565b600654811115610f7d5760405162461bcd60e51b815260040161052590612bd9565b600060068581548110610f9257610f926129f2565b6000918252602090912060089091020160078101549091506001600160a01b03163314610fd15760405162461bcd60e51b815260040161052590612ceb565b6007810154600160a01b900460ff1615610ffd5760405162461bcd60e51b815260040161052590612c88565b6007810180546001600160a01b0319166001600160a01b0386169081179091556040805187815260208101929092527f7fc7b82c46c9f322f2a9c3ab999a39ba8230b89e3173adfde268967405ebb2df9101610d3d565b61105c611eaa565b6110666000612350565b565b806001600160a01b03811661108f5760405162461bcd60e51b815260040161052590612b61565b82806110ad5760405162461bcd60e51b815260040161052590612ba2565b6006548111156110cf5760405162461bcd60e51b815260040161052590612bd9565b6000600685815481106110e4576110e46129f2565b6000918252602090912060089091020160078101549091506001600160a01b031633146111235760405162461bcd60e51b815260040161052590612ceb565b6007810154600160a01b900460ff161561114f5760405162461bcd60e51b815260040161052590612c88565b6006810180546001600160a01b0319166001600160a01b0386169081179091556040805187815260208101929092527f70d216e53bba32c29a3424ecf8aa15aad290eb6525997dd33ea324dfd9cd53399101610d3d565b600060606000606060008060008060008060068b815481106111ca576111ca6129f2565b60009182526020909120600890910201805460028201546004830154600584015460068501546007860154600187018054979850959660038901946001600160a01b039081169481169381169290811691600160a01b90910460ff1690889061123290612af8565b80601f016020809104026020016040519081016040528092919081815260200182805461125e90612af8565b80156112ab5780601f10611280576101008083540402835291602001916112ab565b820191906000526020600020905b81548152906001019060200180831161128e57829003601f168201915b505050505097508580548060200260200160405190810160405280929190818152602001828054801561130757602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116112e9575b50505050509550995099509950995099509950995099509950509193959799909294969850565b816001600160a01b0381166113555760405162461bcd60e51b815260040161052590612b61565b816001600160a01b03811661137c5760405162461bcd60e51b815260040161052590612b61565b6001600160a01b0384166000908152600760205260409020548590859082146113b75760405162461bcd60e51b815260040161052590612cb4565b6001600160a01b0385166000908152600760205260409020548590156113ef5760405162461bcd60e51b815260040161052590612a08565b600060068981548110611404576114046129f2565b6000918252602090912060089091020160058101549091506001600160a01b031633146114435760405162461bcd60e51b815260040161052590612c46565b6007810154600160a01b900460ff161561146f5760405162461bcd60e51b815260040161052590612c88565b60005b600382015481101561150957886001600160a01b031682600301828154811061149d5761149d6129f2565b6000918252602090912001546001600160a01b0316141561150157878260030182815481106114ce576114ce6129f2565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550611509565b600101611472565b506001600160a01b038881166000908152600760209081526040808320839055928a16808352918390208c905582518c8152908101919091527f5f7bf5a6535d2f3b9b2649a02c1afaa7b46a85ac2bc0bac26dc979747762b96b910160405180910390a1604080518a81526001600160a01b038a1660208201527fe1938c7173044f254b823afeeca186e2d18319fb30e37e0e4de6277a52d29106910160405180910390a1505050505050505050565b60606004805461078890612af8565b600080600683815481106115de576115de6129f2565b9060005260206000209060080201604051806101200160405290816000820154815260200160018201805461161290612af8565b80601f016020809104026020016040519081016040528092919081815260200182805461163e90612af8565b801561168b5780601f106116605761010080835404028352916020019161168b565b820191906000526020600020905b81548152906001019060200180831161166e57829003601f168201915b5050505050815260200160028201548152602001600382018054806020026020016040519081016040528092919081815260200182805480156116f757602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116116d9575b505050918352505060048201546001600160a01b039081166020830152600583015481166040830152600683015481166060808401919091526007909301549081166080830152600160a01b900460ff16151560a0909101520151519392505050565b336000908152600760205260409020546117865760405162461bcd60e51b815260040161052590612cb4565b3360009081526007602052604081205460068054919291839081106117ad576117ad6129f2565b600091825260209091206008909102016007810154909150600160a01b900460ff16156117ec5760405162461bcd60e51b815260040161052590612c88565b6117f684846123a2565b8281600201600082825461180a9190612d2f565b9091555050604080516001600160a01b0386168152602081018590529081018390527fa3724ce1d4d5f628abdec7ee4d063f2111d074566122a66514e20939c9ebd69390606001610bf5565b600033816118648286611b7b565b9050838110156118c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610525565b61083c8286868403611f04565b80806118ef5760405162461bcd60e51b815260040161052590612ba2565b6006548111156119115760405162461bcd60e51b815260040161052590612bd9565b600060068381548110611926576119266129f2565b6000918252602090912060089091020160068101549091506001600160a01b031633146119955760405162461bcd60e51b815260206004820152601e60248201527f57454d4958243a2043616c6c6572206973206e6f7420427265616b65722e00006044820152606401610525565b6007810154600160a01b900460ff1615156001146119ee5760405162461bcd60e51b815260206004820152601660248201527557454d4958243a204e4f5420454d455247454e43592160501b6044820152606401610525565b60078101805460ff60a01b191690556040518381527fd3b27aa7927629b0fe961a7f5ac65c9a1dd990a0bdfa1962108af3ab4aa22d8a906020015b60405180910390a1505050565b6000336108198185856120a3565b8080611a625760405162461bcd60e51b815260040161052590612ba2565b600654811115611a845760405162461bcd60e51b815260040161052590612bd9565b600060068381548110611a9957611a996129f2565b6000918252602090912060089091020160068101549091506001600160a01b03163314611b085760405162461bcd60e51b815260206004820152601e60248201527f57454d4958243a2043616c6c6572206973206e6f7420427265616b65722e00006044820152606401610525565b6007810154600160a01b900460ff1615611b345760405162461bcd60e51b815260040161052590612c88565b60078101805460ff60a01b1916600160a01b1790556040517f94ef9a71caf532caf20b1f9820d83dc5d252c51ec150f608e4974a955cb33f4790611a299085815260200190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b806001600160a01b038116611bcd5760405162461bcd60e51b815260040161052590612b61565b8280611beb5760405162461bcd60e51b815260040161052590612ba2565b600654811115611c0d5760405162461bcd60e51b815260040161052590612bd9565b6001600160a01b038316600090815260076020526040902054849084908214611c485760405162461bcd60e51b815260040161052590612cb4565b600060068781548110611c5d57611c5d6129f2565b6000918252602090912060089091020160058101549091506001600160a01b03163314611c9c5760405162461bcd60e51b815260040161052590612c46565b6007810154600160a01b900460ff1615611cc85760405162461bcd60e51b815260040161052590612c88565b60005b6003820154811015611dd157866001600160a01b0316826003018281548110611cf657611cf66129f2565b6000918252602090912001546001600160a01b03161415611dc957600382018054611d2390600190612d2f565b81548110611d3357611d336129f2565b6000918252602090912001546003830180546001600160a01b039092169183908110611d6157611d616129f2565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600301805480611da257611da2612d46565b600082815260209020810160001990810180546001600160a01b0319169055019055611dd1565b600101611ccb565b506001600160a01b03861660008181526007602090815260408083209290925581518a8152908101929092527fe1938c7173044f254b823afeeca186e2d18319fb30e37e0e4de6277a52d29106910160405180910390a150505050505050565b611e39611eaa565b6001600160a01b038116611e9e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610525565b611ea781612350565b50565b6005546001600160a01b031633146110665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610525565b6001600160a01b038316611f665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610525565b6001600160a01b038216611fc75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610525565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006120358484611b7b565b9050600019811461209d57818110156120905760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610525565b61209d8484848403611f04565b50505050565b6001600160a01b0383166121075760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610525565b6001600160a01b0382166121695760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610525565b6001600160a01b038316600090815260208190526040902054818110156121e15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610525565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612218908490612b49565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161226491815260200190565b60405180910390a361209d565b6001600160a01b0382166122c75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610525565b80600260008282546122d99190612b49565b90915550506001600160a01b03821660009081526020819052604081208054839290612306908490612b49565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166124025760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610525565b6001600160a01b038216600090815260208190526040902054818110156124765760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610525565b6001600160a01b03831660009081526020819052604081208383039055600280548492906124a5908490612d2f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161201c565b8280546124f490612af8565b90600052602060002090601f016020900481019282612516576000855561255c565b82601f1061252f57805160ff191683800117855561255c565b8280016001018555821561255c579182015b8281111561255c578251825591602001919060010190612541565b506125689291506125c1565b5090565b82805482825590600052602060002090810192821561255c579160200282015b8281111561255c57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061258c565b5b8082111561256857600081556001016125c2565b60008083601f8401126125e857600080fd5b50813567ffffffffffffffff81111561260057600080fd5b6020830191508360208260051b850101111561261b57600080fd5b9250929050565b80356001600160a01b038116811461263957600080fd5b919050565b8035801515811461263957600080fd5b600080600080600080600080600060e08a8c03121561266c57600080fd5b893567ffffffffffffffff8082111561268457600080fd5b818c0191508c601f83011261269857600080fd5b8135818111156126a757600080fd5b8d60208285010111156126b957600080fd5b60209283019b509950908b013590808211156126d457600080fd5b506126e18c828d016125d6565b90985096506126f4905060408b01612622565b945061270260608b01612622565b935061271060808b01612622565b925061271e60a08b01612622565b915061272c60c08b0161263e565b90509295985092959850929598565b6000815180845260005b8181101561276157602081850181015186830182015201612745565b81811115612773576000602083870101525b50601f01601f19169290920160200192915050565b60208152600061279b602083018461273b565b9392505050565b600080604083850312156127b557600080fd5b6127be83612622565b946020939093013593505050565b6000806000606084860312156127e157600080fd5b6127ea84612622565b92506127f860208501612622565b9150604084013590509250925092565b60006020828403121561281a57600080fd5b5035919050565b60006101008a835280602084015261283b8184018b61273b565b604084019990995250506001600160a01b039586166060820152938516608085015291841660a084015290921660c082015290151560e09091015292915050565b6000806040838503121561288f57600080fd5b8235915061289f60208401612622565b90509250929050565b600081518084526020808501945080840160005b838110156128e15781516001600160a01b0316875295820195908201906001016128bc565b509495945050505050565b60208152600061279b60208301846128a8565b60006020828403121561291157600080fd5b61279b82612622565b60006101208b83528060208401526129348184018c61273b565b9050896040840152828103606084015261294e818a6128a8565b6001600160a01b03988916608085015296881660a0840152505092851660c0840152931660e082015291151561010090920191909152949350505050565b6000806000606084860312156129a157600080fd5b833592506129b160208501612622565b91506129bf60408501612622565b90509250925092565b600080604083850312156129db57600080fd5b6129e483612622565b915061289f60208401612622565b634e487b7160e01b600052603260045260246000fd5b6020808252601f908201527f57454d4958243a204164647265737320616c7265616479206578697374732e00604082015260600190565b60006101008c8352602081818501528b8285015261012091508b8d838601376000848d018301819052601f8d01601f19168501858103840160408701529283018b9052610140909201918b905b8b811015612ab8576001600160a01b03612aa583612622565b1684529282019290820190600101612a8c565b5050506001600160a01b03978816606084015295871660808301525092851660a0840152931660c082015291151560e09092019190915295945050505050565b600181811c90821680612b0c57607f821691505b60208210811415612b2d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612b5c57612b5c612b33565b500190565b60208082526021908201527f57454d4958243a2044494f5320416464726573732063616e6e6f7420626520306040820152601760f91b606082015260800190565b6020808252601b908201527f57454d4958243a20706f6f6c49642063616e6e6f7420626520302e0000000000604082015260600190565b60208082526047908201527f57454d4958243a2057656d6978446f6c6c6172496e666f73206c656e6774682060408201527f6d7573742062652067726561746572207468616e206f7220657175616c20746f606082015266081c1bdbdb125960ca1b608082015260a00190565b60208082526022908201527f57454d4958243a2043616c6c6572206973206e6f74204f776e65725365747465604082015261391760f11b606082015260800190565b60208082526012908201527157454d4958243a20454d455247454e43592160701b604082015260600190565b6020808252601f908201527f57454d4958243a204164647265737320646f6573206e6f742065786973742e00604082015260600190565b60208082526024908201527f57454d4958243a2043616c6c6572206973206e6f7420427265616b65725365746040820152633a32b91760e11b606082015260800190565b600082821015612d4157612d41612b33565b500390565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220971f630af5a30005a14f1cc34f61462f5cc321b223d3cc5646213c210ccf0edb64736f6c63430008090033

Deployed Bytecode Sourcemap

23088:14678:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25904:1300;;;;;;:::i;:::-;;:::i;:::-;;9601:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11952:201;;;;;;:::i;:::-;;:::i;:::-;;;3237:14:1;;3230:22;3212:41;;3200:2;3185:18;11952:201:0;3072:187:1;10721:108:0;10809:12;;10721:108;;;3410:25:1;;;3398:2;3383:18;10721:108:0;3264:177:1;12733:295:0;;;;;;:::i;:::-;;:::i;23487:41::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;:::i;10563:93::-;;;10646:2;5047:36:1;;5035:2;5020:18;10563:93:0;4905:184:1;13437:238:0;;;;;;:::i;:::-;;:::i;27475:679::-;;;;;;:::i;:::-;;:::i;24427:423::-;;;;;;:::i;:::-;;:::i;31711:564::-;;;;;;:::i;:::-;;:::i;31039:522::-;;;;;;:::i;:::-;;:::i;36069:233::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;33107:582::-;;;;;;:::i;:::-;;:::i;10892:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10993:18:0;10966:7;10993:18;;;;;;;;;;;;10892:127;22204:103;;;:::i;32411:540::-;;;;;;:::i;:::-;;:::i;34971:810::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;:::i;29728:1130::-;;;;;;:::i;:::-;;:::i;21556:87::-;21629:6;;21556:87;;-1:-1:-1;;;;;21629:6:0;;;7792:51:1;;7780:2;7765:18;21556:87:0;7646:203:1;9820:104:0;;;:::i;36405:235::-;;;;;;:::i;:::-;;:::i;25041:429::-;;;;;;:::i;:::-;;:::i;14178:436::-;;;;;;:::i;:::-;;:::i;34372:447::-;;;;;;:::i;:::-;;:::i;11225:193::-;;;;;;:::i;:::-;;:::i;35858:114::-;35941:16;:23;35858:114;;33837:439;;;;;;:::i;:::-;;:::i;23535:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;11481:151;;;;;;:::i;:::-;;:::i;28370:1086::-;;;;;;:::i;:::-;;:::i;22462:201::-;;;;;;:::i;:::-;;:::i;25904:1300::-;21442:13;:11;:13::i;:::-;26189:16:::1;:23:::0;26172:14:::1;26225:313;26245:22:::0;;::::1;26225:313;;;26312:11;:27;26324:11;;26336:1;26324:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26312:27:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;26312:27:0;;:32;26286:125:::1;;;;-1:-1:-1::0;;;26286:125:0::1;;;;;;;:::i;:::-;;;;;;;;;26456:6;26426:11;:27;26438:11;;26450:1;26438:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26426:27:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;26426:27:0;:36;26508:3:::1;;26225:313;;;;26550:16;26586:372;;;;;;;;26629:6;26586:372;;;;26664:9;;26586:372;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;-1:-1:-1;26586:372:0;;;-1:-1:-1;;;26586:372:0::1;::::0;;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;;;;;;;;;;;26741:11;;;;;;26586:372;;::::1;::::0;26741:11;;26586:372;26741:11;26586:372;::::1;;::::0;::::1;::::0;;;-1:-1:-1;26586:372:0;;;-1:-1:-1;;;;;;;;26586:372:0;;::::1;;::::0;;::::1;::::0;;;;;;::::1;::::0;;;;;;::::1;::::0;;;;;;::::1;::::0;;;;;::::1;;::::0;;;;;;;;26550:419;;::::1;::::0;;::::1;::::0;;;;;;;;;;;::::1;::::0;;::::1;;::::0;;;;;::::1;::::0;;;;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;26550:419:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;26550:419:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;;26550:419:0;;::::1;-1:-1:-1::0;;;;;26550:419:0;;::::1;;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;::::1;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;::::1;-1:-1:-1::0;;;;;;26550:419:0;;;;;;;-1:-1:-1;;;26550:419:0;::::1;;::::0;;;::::1;;::::0;;26987:209:::1;::::0;::::1;::::0;::::1;::::0;27009:6;;27030:9;;;;27054:11;;;;27080:6;;27101:12;;27128:8;;27151:14;;27180:5;;26987:209:::1;:::i;:::-;;;;;;;;26161:1043;25904:1300:::0;;;;;;;;;:::o;9601:100::-;9655:13;9688:5;9681:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9601:100;:::o;11952:201::-;12035:4;7390:10;12091:32;7390:10;12107:7;12116:6;12091:8;:32::i;:::-;-1:-1:-1;12141:4:0;;11952:201;-1:-1:-1;;;11952:201:0:o;12733:295::-;12864:4;7390:10;12922:38;12938:4;7390:10;12953:6;12922:15;:38::i;:::-;12971:27;12981:4;12987:2;12991:6;12971:9;:27::i;:::-;-1:-1:-1;13016:4:0;;12733:295;-1:-1:-1;;;;12733:295:0:o;23487:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23487:41:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;23487:41:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23487:41:0;;;;-1:-1:-1;23487:41:0;;;;;;;;;;-1:-1:-1;;;23487:41:0;;;;;:::o;13437:238::-;13525:4;7390:10;13581:64;7390:10;13597:7;13634:10;13606:25;7390:10;13597:7;13606:9;:25::i;:::-;:38;;;;:::i;:::-;13581:8;:64::i;27475:679::-;27605:10;-1:-1:-1;;;;;36783:35:0;;36761:118;;;;-1:-1:-1;;;36761:118:0;;;;;;;:::i;:::-;27642:7;36967:20;36959:60:::1;;;;-1:-1:-1::0;;;36959:60:0::1;;;;;;;:::i;:::-;37052:16;:23:::0;:33;-1:-1:-1;37052:33:0::1;37030:154;;;;-1:-1:-1::0;;;37030:154:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37680:22:0;::::2;;::::0;;;:11:::2;:22;::::0;;;;;27685:10;;37680:27;37672:71:::2;;;;-1:-1:-1::0;;;37672:71:0::2;;;;;;;:::i;:::-;27713:39:::3;27755:16;27772:7;27755:25;;;;;;;;:::i;:::-;;::::0;;;::::3;::::0;;;::::3;::::0;;::::3;;27829:27;::::0;::::3;::::0;27755:25;;-1:-1:-1;;;;;;27829:27:0::3;27815:10;:41;27793:125;;;;-1:-1:-1::0;;;27793:125:0::3;;;;;;;:::i;:::-;27937:20;::::0;::::3;::::0;-1:-1:-1;;;27937:20:0;::::3;;;:29;27929:60;;;;-1:-1:-1::0;;;27929:60:0::3;;;;;;;:::i;:::-;28002:26;::::0;::::3;:43:::0;;::::3;::::0;::::3;::::0;;-1:-1:-1;28002:43:0;;;::::3;::::0;;;;;::::3;::::0;;-1:-1:-1;;;;;;28002:43:0::3;-1:-1:-1::0;;;;;28002:43:0;::::3;::::0;;::::3;::::0;;;28058:23;;;:11:::3;:23:::0;;;;;;;:33;;;28109:37;;12904:25:1;;;12945:18;;;12938:60;28109:37:0::3;::::0;12877:18:1;28109:37:0::3;;;;;;;27702:452;37195:1:::2;36890::::1;27475:679:::0;;;:::o;24427:423::-;37287:10;37275:23;;;;:11;:23;;;;;;37253:109;;;;-1:-1:-1;;;37253:109:0;;;;;;;:::i;:::-;24539:10:::1;24510:14;24527:23:::0;;;:11:::1;:23;::::0;;;;;24603:16:::1;:24:::0;;24527:23;;24510:14;24527:23;;24603:24;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;24648:20;::::0;::::1;::::0;24603:24;;-1:-1:-1;;;;24648:20:0;::::1;;;:29;24640:60;;;;-1:-1:-1::0;;;24640:60:0::1;;;;;;;:::i;:::-;24711:19;24717:3;24722:7;24711:5;:19::i;:::-;24778:7;24743:15;:31;;;:42;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;24803:39:0::1;::::0;;-1:-1:-1;;;;;13589:32:1;;13571:51;;13653:2;13638:18;;13631:34;;;13681:18;;;13674:34;;;24803:39:0::1;::::0;13559:2:1;13544:18;24803:39:0::1;;;;;;;;24499:351;;24427:423:::0;;:::o;31711:564::-;31827:12;-1:-1:-1;;;;;36783:35:0;;36761:118;;;;-1:-1:-1;;;36761:118:0;;;;;;;:::i;:::-;31857:7;36967:20;36959:60:::1;;;;-1:-1:-1::0;;;36959:60:0::1;;;;;;;:::i;:::-;37052:16;:23:::0;:33;-1:-1:-1;37052:33:0::1;37030:154;;;;-1:-1:-1::0;;;37030:154:0::1;;;;;;;:::i;:::-;31877:39:::2;31919:16;31936:7;31919:25;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;::::2;::::0;;::::2;;31993:27;::::0;::::2;::::0;31919:25;;-1:-1:-1;;;;;;31993:27:0::2;31979:10;:41;31957:125;;;;-1:-1:-1::0;;;31957:125:0::2;;;;;;;:::i;:::-;32101:20;::::0;::::2;::::0;-1:-1:-1;;;32101:20:0;::::2;;;:29;32093:60;;;;-1:-1:-1::0;;;32093:60:0::2;;;;;;;:::i;:::-;32166:27;::::0;::::2;:42:::0;;-1:-1:-1;;;;;;32166:42:0::2;-1:-1:-1::0;;;;;32166:42:0;::::2;::::0;;::::2;::::0;;;32226:41:::2;::::0;;12904:25:1;;;12960:2;12945:18;;12938:60;;;;32226:41:0::2;::::0;12877:18:1;32226:41:0::2;;;;;;;;31866:409;36890:1:::1;31711:564:::0;;;:::o;31039:522::-;31143:6;-1:-1:-1;;;;;36783:35:0;;36761:118;;;;-1:-1:-1;;;36761:118:0;;;;;;;:::i;:::-;31167:7;36967:20;36959:60:::1;;;;-1:-1:-1::0;;;36959:60:0::1;;;;;;;:::i;:::-;37052:16;:23:::0;:33;-1:-1:-1;37052:33:0::1;37030:154;;;;-1:-1:-1::0;;;37030:154:0::1;;;;;;;:::i;:::-;31187:39:::2;31229:16;31246:7;31229:25;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;::::2;::::0;;::::2;;31303:27;::::0;::::2;::::0;31229:25;;-1:-1:-1;;;;;;31303:27:0::2;31289:10;:41;31267:125;;;;-1:-1:-1::0;;;31267:125:0::2;;;;;;;:::i;:::-;31411:20;::::0;::::2;::::0;-1:-1:-1;;;31411:20:0;::::2;;;:29;31403:60;;;;-1:-1:-1::0;;;31403:60:0::2;;;;;;;:::i;:::-;31476:21;::::0;::::2;:30:::0;;-1:-1:-1;;;;;;31476:30:0::2;-1:-1:-1::0;;;;;31476:30:0;::::2;::::0;;::::2;::::0;;;31524:29:::2;::::0;;12904:25:1;;;12960:2;12945:18;;12938:60;;;;31524:29:0::2;::::0;12877:18:1;31524:29:0::2;12730:274:1::0;36069:233:0;36152:16;36181:39;36223:16;36240:7;36223:25;;;;;;;;:::i;:::-;;;;;;;;;;;36181:67;;36268:15;:26;;36261:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36261:33:0;;;;;;;;;;;;;;;;;;;;;;;;36069:233;;;:::o;33107:582::-;33227:14;-1:-1:-1;;;;;36783:35:0;;36761:118;;;;-1:-1:-1;;;36761:118:0;;;;;;;:::i;:::-;33259:7;36967:20;36959:60:::1;;;;-1:-1:-1::0;;;36959:60:0::1;;;;;;;:::i;:::-;37052:16;:23:::0;:33;-1:-1:-1;37052:33:0::1;37030:154;;;;-1:-1:-1::0;;;37030:154:0::1;;;;;;;:::i;:::-;33279:39:::2;33321:16;33338:7;33321:25;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;::::2;::::0;;::::2;;33395:29;::::0;::::2;::::0;33321:25;;-1:-1:-1;;;;;;33395:29:0::2;33381:10;:43;33359:129;;;;-1:-1:-1::0;;;33359:129:0::2;;;;;;;:::i;:::-;33507:20;::::0;::::2;::::0;-1:-1:-1;;;33507:20:0;::::2;;;:29;33499:60;;;;-1:-1:-1::0;;;33499:60:0::2;;;;;;;:::i;:::-;33572:29;::::0;::::2;:46:::0;;-1:-1:-1;;;;;;33572:46:0::2;-1:-1:-1::0;;;;;33572:46:0;::::2;::::0;;::::2;::::0;;;33636:45:::2;::::0;;12904:25:1;;;12960:2;12945:18;;12938:60;;;;33636:45:0::2;::::0;12877:18:1;33636:45:0::2;12730:274:1::0;22204:103:0;21442:13;:11;:13::i;:::-;22269:30:::1;22296:1;22269:18;:30::i;:::-;22204:103::o:0;32411:540::-;32519:8;-1:-1:-1;;;;;36783:35:0;;36761:118;;;;-1:-1:-1;;;36761:118:0;;;;;;;:::i;:::-;32545:7;36967:20;36959:60:::1;;;;-1:-1:-1::0;;;36959:60:0::1;;;;;;;:::i;:::-;37052:16;:23:::0;:33;-1:-1:-1;37052:33:0::1;37030:154;;;;-1:-1:-1::0;;;37030:154:0::1;;;;;;;:::i;:::-;32565:39:::2;32607:16;32624:7;32607:25;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;::::2;::::0;;::::2;;32681:29;::::0;::::2;::::0;32607:25;;-1:-1:-1;;;;;;32681:29:0::2;32667:10;:43;32645:129;;;;-1:-1:-1::0;;;32645:129:0::2;;;;;;;:::i;:::-;32793:20;::::0;::::2;::::0;-1:-1:-1;;;32793:20:0;::::2;;;:29;32785:60;;;;-1:-1:-1::0;;;32785:60:0::2;;;;;;;:::i;:::-;32858:23;::::0;::::2;:34:::0;;-1:-1:-1;;;;;;32858:34:0::2;-1:-1:-1::0;;;;;32858:34:0;::::2;::::0;;::::2;::::0;;;32910:33:::2;::::0;;12904:25:1;;;12960:2;12945:18;;12938:60;;;;32910:33:0::2;::::0;12877:18:1;32910:33:0::2;12730:274:1::0;34971:810:0;35094:7;35116:13;35144:7;35166:16;35197:7;35219;35241;35263;35285:4;35317:39;35359:16;35376:7;35359:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;35419:22;;35495:31;;;;35582:21;;;;35618:27;;;;35660:23;;;;35698:29;;;;35456:24;;;35397:376;;35359:25;;-1:-1:-1;35419:22:0;;35541:26;;;;-1:-1:-1;;;;;35582:21:0;;;;35618:27;;;35660:23;;;35698:29;;;;-1:-1:-1;;;35742:20:0;;;;;;35456:24;;35397:376;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35397:376:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34971:810;;;;;;;;;;;:::o;29728:1130::-;29894:10;-1:-1:-1;;;;;36783:35:0;;36761:118;;;;-1:-1:-1;;;36761:118:0;;;;;;;:::i;:::-;29930:13;-1:-1:-1;;;;;36783:35:0;::::1;36761:118;;;;-1:-1:-1::0;;;36761:118:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37489:22:0;::::2;;::::0;;;:11:::2;:22;::::0;;;;;29976:7;;29985:10;;37489:32;::::2;37467:113;;;;-1:-1:-1::0;;;37467:113:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37680:22:0;::::3;;::::0;;;:11:::3;:22;::::0;;;;;30031:13;;37680:27;37672:71:::3;;;;-1:-1:-1::0;;;37672:71:0::3;;;;;;;:::i;:::-;30062:39:::4;30104:16;30121:7;30104:25;;;;;;;;:::i;:::-;;::::0;;;::::4;::::0;;;::::4;::::0;;::::4;;30178:27;::::0;::::4;::::0;30104:25;;-1:-1:-1;;;;;;30178:27:0::4;30164:10;:41;30142:125;;;;-1:-1:-1::0;;;30142:125:0::4;;;;;;;:::i;:::-;30286:20;::::0;::::4;::::0;-1:-1:-1;;;30286:20:0;::::4;;;:29;30278:60;;;;-1:-1:-1::0;;;30278:60:0::4;;;;;;;:::i;:::-;30356:6;30351:299;30372:26;::::0;::::4;:33:::0;30368:37;::::4;30351:299;;;30461:10;-1:-1:-1::0;;;;;30428:43:0::4;:15;:26;;30455:1;30428:29;;;;;;;;:::i;:::-;;::::0;;;::::4;::::0;;;::::4;::::0;-1:-1:-1;;;;;30428:29:0::4;:43;30424:153;;;30524:13;30492:15;:26;;30519:1;30492:29;;;;;;;;:::i;:::-;;;;;;;;;:45;;;;;-1:-1:-1::0;;;;;30492:45:0::4;;;;;-1:-1:-1::0;;;;;30492:45:0::4;;;;;;30556:5;;30424:153;30620:3;;30351:299;;;-1:-1:-1::0;;;;;;30662:23:0;;::::4;30688:1;30662:23:::0;;;:11:::4;:23;::::0;;;;;;;:27;;;30700:26;;::::4;::::0;;;;;;;:36;;;30754:40;;12904:25:1;;;12945:18;;;12938:60;;;;30754:40:0::4;::::0;12877:18:1;30754:40:0::4;;;;;;;30810;::::0;;12904:25:1;;;-1:-1:-1;;;;;12965:32:1;;12960:2;12945:18;;12938:60;30810:40:0::4;::::0;12877:18:1;30810:40:0::4;;;;;;;30051:807;37591:1:::3;36890::::2;;::::1;29728:1130:::0;;;;:::o;9820:104::-;9876:13;9909:7;9902:14;;;;;:::i;36405:235::-;36493:7;36513:38;36554:16;36571:7;36554:25;;;;;;;;:::i;:::-;;;;;;;;;;;36513:66;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36513:66:0;;;;;;;;;;;;;;;;-1:-1:-1;;;36513:66:0;;;-1:-1:-1;;36513:66:0;;;;-1:-1:-1;;;;;36513:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36513:66:0;;;;;;;;;;;36599:26;;:33;;;-1:-1:-1;;;36405:235:0:o;25041:429::-;37287:10;37275:23;;;;:11;:23;;;;;;37253:109;;;;-1:-1:-1;;;37253:109:0;;;;;;;:::i;:::-;25155:10:::1;25126:14;25143:23:::0;;;:11:::1;:23;::::0;;;;;25219:16:::1;:24:::0;;25143:23;;25126:14;25143:23;;25219:24;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;25264:20;::::0;::::1;::::0;25219:24;;-1:-1:-1;;;;25264:20:0;::::1;;;:29;25256:60;;;;-1:-1:-1::0;;;25256:60:0::1;;;;;;;:::i;:::-;25327:21;25333:5;25340:7;25327:5;:21::i;:::-;25396:7;25361:15;:31;;;:42;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;25421:41:0::1;::::0;;-1:-1:-1;;;;;13589:32:1;;13571:51;;13653:2;13638:18;;13631:34;;;13681:18;;;13674:34;;;25421:41:0::1;::::0;13559:2:1;13544:18;25421:41:0::1;13369:345:1::0;14178:436:0;14271:4;7390:10;14271:4;14354:25;7390:10;14371:7;14354:9;:25::i;:::-;14327:52;;14418:15;14398:16;:35;;14390:85;;;;-1:-1:-1;;;14390:85:0;;14456:2:1;14390:85:0;;;14438:21:1;14495:2;14475:18;;;14468:30;14534:34;14514:18;;;14507:62;-1:-1:-1;;;14585:18:1;;;14578:35;14630:19;;14390:85:0;14254:401:1;14390:85:0;14511:60;14520:5;14527:7;14555:15;14536:16;:34;14511:8;:60::i;34372:447::-;34438:7;36967:20;36959:60;;;;-1:-1:-1;;;36959:60:0;;;;;;;:::i;:::-;37052:16;:23;:33;-1:-1:-1;37052:33:0;37030:154;;;;-1:-1:-1;;;37030:154:0;;;;;;;:::i;:::-;34458:39:::1;34500:16;34517:7;34500:25;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;34574:23;::::0;::::1;::::0;34500:25;;-1:-1:-1;;;;;;34574:23:0::1;34560:10;:37;34538:117;;;::::0;-1:-1:-1;;;34538:117:0;;14862:2:1;34538:117:0::1;::::0;::::1;14844:21:1::0;14901:2;14881:18;;;14874:30;14940:32;14920:18;;;14913:60;14990:18;;34538:117:0::1;14660:354:1::0;34538:117:0::1;34674:20;::::0;::::1;::::0;-1:-1:-1;;;34674:20:0;::::1;;;:28;;34698:4;34674:28;34666:63;;;::::0;-1:-1:-1;;;34666:63:0;;15221:2:1;34666:63:0::1;::::0;::::1;15203:21:1::0;15260:2;15240:18;;;15233:30;-1:-1:-1;;;15279:18:1;;;15272:52;15341:18;;34666:63:0::1;15019:346:1::0;34666:63:0::1;34742:20;::::0;::::1;:28:::0;;-1:-1:-1;;;;34742:28:0::1;::::0;;34788:23:::1;::::0;3410:25:1;;;34788:23:0::1;::::0;3398:2:1;3383:18;34788:23:0::1;;;;;;;;34447:372;34372:447:::0;;:::o;11225:193::-;11304:4;7390:10;11360:28;7390:10;11377:2;11381:6;11360:9;:28::i;33837:439::-;33901:7;36967:20;36959:60;;;;-1:-1:-1;;;36959:60:0;;;;;;;:::i;:::-;37052:16;:23;:33;-1:-1:-1;37052:33:0;37030:154;;;;-1:-1:-1;;;37030:154:0;;;;;;;:::i;:::-;33921:39:::1;33963:16;33980:7;33963:25;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;34037:23;::::0;::::1;::::0;33963:25;;-1:-1:-1;;;;;;34037:23:0::1;34023:10;:37;34001:117;;;::::0;-1:-1:-1;;;34001:117:0;;14862:2:1;34001:117:0::1;::::0;::::1;14844:21:1::0;14901:2;14881:18;;;14874:30;14940:32;14920:18;;;14913:60;14990:18;;34001:117:0::1;14660:354:1::0;34001:117:0::1;34137:20;::::0;::::1;::::0;-1:-1:-1;;;34137:20:0;::::1;;;:29;34129:60;;;;-1:-1:-1::0;;;34129:60:0::1;;;;;;;:::i;:::-;34202:20;::::0;::::1;:27:::0;;-1:-1:-1;;;;34202:27:0::1;-1:-1:-1::0;;;34202:27:0::1;::::0;;34247:21:::1;::::0;::::1;::::0;::::1;::::0;34260:7;3410:25:1;;3398:2;3383:18;;3264:177;11481:151:0;-1:-1:-1;;;;;11597:18:0;;;11570:7;11597:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11481:151::o;28370:1086::-;28503:10;-1:-1:-1;;;;;36783:35:0;;36761:118;;;;-1:-1:-1;;;36761:118:0;;;;;;;:::i;:::-;28540:7;36967:20;36959:60:::1;;;;-1:-1:-1::0;;;36959:60:0::1;;;;;;;:::i;:::-;37052:16;:23:::0;:33;-1:-1:-1;37052:33:0::1;37030:154;;;;-1:-1:-1::0;;;37030:154:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37489:22:0;::::2;;::::0;;;:11:::2;:22;::::0;;;;;28580:7;;28589:10;;37489:32;::::2;37467:113;;;;-1:-1:-1::0;;;37467:113:0::2;;;;;;;:::i;:::-;28617:39:::3;28659:16;28676:7;28659:25;;;;;;;;:::i;:::-;;::::0;;;::::3;::::0;;;::::3;::::0;;::::3;;28733:27;::::0;::::3;::::0;28659:25;;-1:-1:-1;;;;;;28733:27:0::3;28719:10;:41;28697:125;;;;-1:-1:-1::0;;;28697:125:0::3;;;;;;;:::i;:::-;28841:20;::::0;::::3;::::0;-1:-1:-1;;;28841:20:0;::::3;;;:29;28833:60;;;;-1:-1:-1::0;;;28833:60:0::3;;;;;;;:::i;:::-;28911:9;28906:445;28930:26;::::0;::::3;:33:::0;28926:37;::::3;28906:445;;;29019:10;-1:-1:-1::0;;;;;28986:43:0::3;:15;:26;;29013:1;28986:29;;;;;;;;:::i;:::-;;::::0;;;::::3;::::0;;;::::3;::::0;-1:-1:-1;;;;;28986:29:0::3;:43;28982:296;;;29082:26;::::0;::::3;29131:33:::0;;:37:::3;::::0;29167:1:::3;::::0;29131:37:::3;:::i;:::-;29082:105;;;;;;;;:::i;:::-;;::::0;;;::::3;::::0;;;::::3;::::0;29050:26:::3;::::0;::::3;:29:::0;;-1:-1:-1;;;;;29082:105:0;;::::3;::::0;29077:1;;29050:29;::::3;;;;;:::i;:::-;;;;;;;;;:137;;;;;-1:-1:-1::0;;;;;29050:137:0::3;;;;;-1:-1:-1::0;;;;;29050:137:0::3;;;;;;29206:15;:26;;:32;;;;;;;:::i;:::-;;::::0;;;::::3;::::0;;;;-1:-1:-1;;29206:32:0;;;;;-1:-1:-1;;;;;;29206:32:0::3;::::0;;;;;29257:5:::3;;28982:296;29321:3;;28906:445;;;-1:-1:-1::0;;;;;;29363:23:0;::::3;29389:1;29363:23:::0;;;:11:::3;:23;::::0;;;;;;;:27;;;;29408:40;;12904:25:1;;;12945:18;;;12938:60;;;;29408:40:0::3;::::0;12877:18:1;29408:40:0::3;;;;;;;28606:850;37195:1:::2;;36890::::1;28370:1086:::0;;;:::o;22462:201::-;21442:13;:11;:13::i;:::-;-1:-1:-1;;;;;22551:22:0;::::1;22543:73;;;::::0;-1:-1:-1;;;22543:73:0;;15704:2:1;22543:73:0::1;::::0;::::1;15686:21:1::0;15743:2;15723:18;;;15716:30;15782:34;15762:18;;;15755:62;-1:-1:-1;;;15833:18:1;;;15826:36;15879:19;;22543:73:0::1;15502:402:1::0;22543:73:0::1;22627:28;22646:8;22627:18;:28::i;:::-;22462:201:::0;:::o;21721:132::-;21629:6;;-1:-1:-1;;;;;21629:6:0;7390:10;21785:23;21777:68;;;;-1:-1:-1;;;21777:68:0;;16111:2:1;21777:68:0;;;16093:21:1;;;16130:18;;;16123:30;16189:34;16169:18;;;16162:62;16241:18;;21777:68:0;15909:356:1;17803:380:0;-1:-1:-1;;;;;17939:19:0;;17931:68;;;;-1:-1:-1;;;17931:68:0;;16472:2:1;17931:68:0;;;16454:21:1;16511:2;16491:18;;;16484:30;16550:34;16530:18;;;16523:62;-1:-1:-1;;;16601:18:1;;;16594:34;16645:19;;17931:68:0;16270:400:1;17931:68:0;-1:-1:-1;;;;;18018:21:0;;18010:68;;;;-1:-1:-1;;;18010:68:0;;16877:2:1;18010:68:0;;;16859:21:1;16916:2;16896:18;;;16889:30;16955:34;16935:18;;;16928:62;-1:-1:-1;;;17006:18:1;;;16999:32;17048:19;;18010:68:0;16675:398:1;18010:68:0;-1:-1:-1;;;;;18091:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18143:32;;3410:25:1;;;18143:32:0;;3383:18:1;18143:32:0;;;;;;;;17803:380;;;:::o;18474:453::-;18609:24;18636:25;18646:5;18653:7;18636:9;:25::i;:::-;18609:52;;-1:-1:-1;;18676:16:0;:37;18672:248;;18758:6;18738:16;:26;;18730:68;;;;-1:-1:-1;;;18730:68:0;;17280:2:1;18730:68:0;;;17262:21:1;17319:2;17299:18;;;17292:30;17358:31;17338:18;;;17331:59;17407:18;;18730:68:0;17078:353:1;18730:68:0;18842:51;18851:5;18858:7;18886:6;18867:16;:25;18842:8;:51::i;:::-;18598:329;18474:453;;;:::o;15084:671::-;-1:-1:-1;;;;;15215:18:0;;15207:68;;;;-1:-1:-1;;;15207:68:0;;17638:2:1;15207:68:0;;;17620:21:1;17677:2;17657:18;;;17650:30;17716:34;17696:18;;;17689:62;-1:-1:-1;;;17767:18:1;;;17760:35;17812:19;;15207:68:0;17436:401:1;15207:68:0;-1:-1:-1;;;;;15294:16:0;;15286:64;;;;-1:-1:-1;;;15286:64:0;;18044:2:1;15286:64:0;;;18026:21:1;18083:2;18063:18;;;18056:30;18122:34;18102:18;;;18095:62;-1:-1:-1;;;18173:18:1;;;18166:33;18216:19;;15286:64:0;17842:399:1;15286:64:0;-1:-1:-1;;;;;15436:15:0;;15414:19;15436:15;;;;;;;;;;;15470:21;;;;15462:72;;;;-1:-1:-1;;;15462:72:0;;18448:2:1;15462:72:0;;;18430:21:1;18487:2;18467:18;;;18460:30;18526:34;18506:18;;;18499:62;-1:-1:-1;;;18577:18:1;;;18570:36;18623:19;;15462:72:0;18246:402:1;15462:72:0;-1:-1:-1;;;;;15570:15:0;;;:9;:15;;;;;;;;;;;15588:20;;;15570:38;;15630:13;;;;;;;;:23;;15602:6;;15570:9;15630:23;;15602:6;;15630:23;:::i;:::-;;;;;;;;15686:2;-1:-1:-1;;;;;15671:26:0;15680:4;-1:-1:-1;;;;;15671:26:0;;15690:6;15671:26;;;;3410:25:1;;3398:2;3383:18;;3264:177;15671:26:0;;;;;;;;15710:37;16774:591;16042:399;-1:-1:-1;;;;;16126:21:0;;16118:65;;;;-1:-1:-1;;;16118:65:0;;18855:2:1;16118:65:0;;;18837:21:1;18894:2;18874:18;;;18867:30;18933:33;18913:18;;;18906:61;18984:18;;16118:65:0;18653:355:1;16118:65:0;16274:6;16258:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16291:18:0;;:9;:18;;;;;;;;;;:28;;16313:6;;16291:9;:28;;16313:6;;16291:28;:::i;:::-;;;;-1:-1:-1;;16335:37:0;;3410:25:1;;;-1:-1:-1;;;;;16335:37:0;;;16352:1;;16335:37;;3398:2:1;3383:18;16335:37:0;;;;;;;16042:399;;:::o;22823:191::-;22916:6;;;-1:-1:-1;;;;;22933:17:0;;;-1:-1:-1;;;;;;22933:17:0;;;;;;;22966:40;;22916:6;;;22933:17;22916:6;;22966:40;;22897:16;;22966:40;22886:128;22823:191;:::o;16774:591::-;-1:-1:-1;;;;;16858:21:0;;16850:67;;;;-1:-1:-1;;;16850:67:0;;19215:2:1;16850:67:0;;;19197:21:1;19254:2;19234:18;;;19227:30;19293:34;19273:18;;;19266:62;-1:-1:-1;;;19344:18:1;;;19337:31;19385:19;;16850:67:0;19013:397:1;16850:67:0;-1:-1:-1;;;;;17017:18:0;;16992:22;17017:18;;;;;;;;;;;17054:24;;;;17046:71;;;;-1:-1:-1;;;17046:71:0;;19617:2:1;17046:71:0;;;19599:21:1;19656:2;19636:18;;;19629:30;19695:34;19675:18;;;19668:62;-1:-1:-1;;;19746:18:1;;;19739:32;19788:19;;17046:71:0;19415:398:1;17046:71:0;-1:-1:-1;;;;;17153:18:0;;:9;:18;;;;;;;;;;17174:23;;;17153:44;;17219:12;:22;;17191:6;;17153:9;17219:22;;17191:6;;17219:22;:::i;:::-;;;;-1:-1:-1;;17259:37:0;;3410:25:1;;;17285:1:0;;-1:-1:-1;;;;;17259:37:0;;;;;3398:2:1;3383:18;17259:37:0;3264:177:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:367:1;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:173::-;454:20;;-1:-1:-1;;;;;503:31:1;;493:42;;483:70;;549:1;546;539:12;483:70;386:173;;;:::o;564:160::-;629:20;;685:13;;678:21;668:32;;658:60;;714:1;711;704:12;729:1281;878:6;886;894;902;910;918;926;934;942;995:3;983:9;974:7;970:23;966:33;963:53;;;1012:1;1009;1002:12;963:53;1052:9;1039:23;1081:18;1122:2;1114:6;1111:14;1108:34;;;1138:1;1135;1128:12;1108:34;1176:6;1165:9;1161:22;1151:32;;1221:7;1214:4;1210:2;1206:13;1202:27;1192:55;;1243:1;1240;1233:12;1192:55;1283:2;1270:16;1309:2;1301:6;1298:14;1295:34;;;1325:1;1322;1315:12;1295:34;1372:7;1365:4;1356:6;1352:2;1348:15;1344:26;1341:39;1338:59;;;1393:1;1390;1383:12;1338:59;1424:4;1416:13;;;;-1:-1:-1;1448:6:1;-1:-1:-1;1492:20:1;;;1479:34;;1525:16;;;1522:36;;;1554:1;1551;1544:12;1522:36;;1593:72;1657:7;1646:8;1635:9;1631:24;1593:72;:::i;:::-;1684:8;;-1:-1:-1;1567:98:1;-1:-1:-1;1738:38:1;;-1:-1:-1;1772:2:1;1757:18;;1738:38;:::i;:::-;1728:48;;1795:38;1829:2;1818:9;1814:18;1795:38;:::i;:::-;1785:48;;1852:39;1886:3;1875:9;1871:19;1852:39;:::i;:::-;1842:49;;1910:39;1944:3;1933:9;1929:19;1910:39;:::i;:::-;1900:49;;1968:36;1999:3;1988:9;1984:19;1968:36;:::i;:::-;1958:46;;729:1281;;;;;;;;;;;:::o;2015:472::-;2057:3;2095:5;2089:12;2122:6;2117:3;2110:19;2147:1;2157:162;2171:6;2168:1;2165:13;2157:162;;;2233:4;2289:13;;;2285:22;;2279:29;2261:11;;;2257:20;;2250:59;2186:12;2157:162;;;2337:6;2334:1;2331:13;2328:87;;;2403:1;2396:4;2387:6;2382:3;2378:16;2374:27;2367:38;2328:87;-1:-1:-1;2469:2:1;2448:15;-1:-1:-1;;2444:29:1;2435:39;;;;2476:4;2431:50;;2015:472;-1:-1:-1;;2015:472:1:o;2492:220::-;2641:2;2630:9;2623:21;2604:4;2661:45;2702:2;2691:9;2687:18;2679:6;2661:45;:::i;:::-;2653:53;2492:220;-1:-1:-1;;;2492:220:1:o;2717:254::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2885:29;2904:9;2885:29;:::i;:::-;2875:39;2961:2;2946:18;;;;2933:32;;-1:-1:-1;;;2717:254:1:o;3446:328::-;3523:6;3531;3539;3592:2;3580:9;3571:7;3567:23;3563:32;3560:52;;;3608:1;3605;3598:12;3560:52;3631:29;3650:9;3631:29;:::i;:::-;3621:39;;3679:38;3713:2;3702:9;3698:18;3679:38;:::i;:::-;3669:48;;3764:2;3753:9;3749:18;3736:32;3726:42;;3446:328;;;;;:::o;3779:180::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;-1:-1:-1;3930:23:1;;3779:180;-1:-1:-1;3779:180:1:o;4073:827::-;4375:4;4404:3;4434:6;4423:9;4416:25;4477:2;4472;4461:9;4457:18;4450:30;4497:45;4538:2;4527:9;4523:18;4515:6;4497:45;:::i;:::-;4573:2;4558:18;;4551:34;;;;-1:-1:-1;;;;;;;4659:15:1;;;4654:2;4639:18;;4632:43;4712:15;;;4706:3;4691:19;;4684:44;4765:15;;;4612:3;4744:19;;4737:44;4818:15;;;4812:3;4797:19;;4790:44;4878:14;;4871:22;4865:3;4850:19;;;4843:51;4489:53;4073:827;-1:-1:-1;;4073:827:1:o;5094:254::-;5162:6;5170;5223:2;5211:9;5202:7;5198:23;5194:32;5191:52;;;5239:1;5236;5229:12;5191:52;5275:9;5262:23;5252:33;;5304:38;5338:2;5327:9;5323:18;5304:38;:::i;:::-;5294:48;;5094:254;;;;;:::o;5353:461::-;5406:3;5444:5;5438:12;5471:6;5466:3;5459:19;5497:4;5526:2;5521:3;5517:12;5510:19;;5563:2;5556:5;5552:14;5584:1;5594:195;5608:6;5605:1;5602:13;5594:195;;;5673:13;;-1:-1:-1;;;;;5669:39:1;5657:52;;5729:12;;;;5764:15;;;;5705:1;5623:9;5594:195;;;-1:-1:-1;5805:3:1;;5353:461;-1:-1:-1;;;;;5353:461:1:o;5819:261::-;5998:2;5987:9;5980:21;5961:4;6018:56;6070:2;6059:9;6055:18;6047:6;6018:56;:::i;6085:186::-;6144:6;6197:2;6185:9;6176:7;6172:23;6168:32;6165:52;;;6213:1;6210;6203:12;6165:52;6236:29;6255:9;6236:29;:::i;6276:1032::-;6656:4;6685:3;6715:6;6704:9;6697:25;6758:2;6753;6742:9;6738:18;6731:30;6784:45;6825:2;6814:9;6810:18;6802:6;6784:45;:::i;:::-;6770:59;;6865:6;6860:2;6849:9;6845:18;6838:34;6920:9;6912:6;6908:22;6903:2;6892:9;6888:18;6881:50;6948:44;6985:6;6977;6948:44;:::i;:::-;-1:-1:-1;;;;;7067:15:1;;;7061:3;7046:19;;7039:44;7120:15;;;7019:3;7099:19;;7092:44;-1:-1:-1;;7173:15:1;;;7167:3;7152:19;;7145:44;7226:15;;7220:3;7205:19;;7198:44;7286:14;;7279:22;7273:3;7258:19;;;7251:51;;;;6940:52;6276:1032;-1:-1:-1;;;;6276:1032:1:o;7313:328::-;7390:6;7398;7406;7459:2;7447:9;7438:7;7434:23;7430:32;7427:52;;;7475:1;7472;7465:12;7427:52;7511:9;7498:23;7488:33;;7540:38;7574:2;7563:9;7559:18;7540:38;:::i;:::-;7530:48;;7597:38;7631:2;7620:9;7616:18;7597:38;:::i;:::-;7587:48;;7313:328;;;;;:::o;7854:260::-;7922:6;7930;7983:2;7971:9;7962:7;7958:23;7954:32;7951:52;;;7999:1;7996;7989:12;7951:52;8022:29;8041:9;8022:29;:::i;:::-;8012:39;;8070:38;8104:2;8093:9;8089:18;8070:38;:::i;8119:127::-;8180:10;8175:3;8171:20;8168:1;8161:31;8211:4;8208:1;8201:15;8235:4;8232:1;8225:15;8251:355;8453:2;8435:21;;;8492:2;8472:18;;;8465:30;8531:33;8526:2;8511:18;;8504:61;8597:2;8582:18;;8251:355::o;8611:1476::-;8983:4;9012:3;9042:6;9031:9;9024:25;9068:2;9106;9101;9090:9;9086:18;9079:30;9145:6;9140:2;9129:9;9125:18;9118:34;9171:3;9161:13;;9224:6;9216;9211:2;9200:9;9196:18;9183:48;9280:1;9251:22;;;9247:31;;9240:42;;;9341:2;9320:15;;-1:-1:-1;;9316:29:1;9301:45;;9417:18;;;9413:27;;9408:2;9393:18;;9386:55;9366:11;;;9473:19;;;9516:3;9508:12;;;;9543:6;;9577:208;9591:6;9588:1;9585:13;9577:208;;;-1:-1:-1;;;;;9656:26:1;9675:6;9656:26;:::i;:::-;9652:52;9640:65;;9725:12;;;;9760:15;;;;9613:1;9606:9;9577:208;;;-1:-1:-1;;;;;;;;4030:31:1;;;9856:2;9841:18;;4018:44;4030:31;;;9911:3;9896:19;;4018:44;-1:-1:-1;4030:31:1;;;9967:3;9952:19;;4018:44;4030:31;;10023:3;10008:19;;4018:44;3046:13;;3039:21;10076:3;10061:19;;;3027:34;;;;9802:3;8611:1476;-1:-1:-1;;;;;8611:1476:1:o;10092:380::-;10171:1;10167:12;;;;10214;;;10235:61;;10289:4;10281:6;10277:17;10267:27;;10235:61;10342:2;10334:6;10331:14;10311:18;10308:38;10305:161;;;10388:10;10383:3;10379:20;10376:1;10369:31;10423:4;10420:1;10413:15;10451:4;10448:1;10441:15;10305:161;;10092:380;;;:::o;10477:127::-;10538:10;10533:3;10529:20;10526:1;10519:31;10569:4;10566:1;10559:15;10593:4;10590:1;10583:15;10609:128;10649:3;10680:1;10676:6;10673:1;10670:13;10667:39;;;10686:18;;:::i;:::-;-1:-1:-1;10722:9:1;;10609:128::o;10742:397::-;10944:2;10926:21;;;10983:2;10963:18;;;10956:30;11022:34;11017:2;11002:18;;10995:62;-1:-1:-1;;;11088:2:1;11073:18;;11066:31;11129:3;11114:19;;10742:397::o;11144:351::-;11346:2;11328:21;;;11385:2;11365:18;;;11358:30;11424:29;11419:2;11404:18;;11397:57;11486:2;11471:18;;11144:351::o;11500:475::-;11702:2;11684:21;;;11741:2;11721:18;;;11714:30;11780:34;11775:2;11760:18;;11753:62;11851:34;11846:2;11831:18;;11824:62;-1:-1:-1;;;11917:3:1;11902:19;;11895:38;11965:3;11950:19;;11500:475::o;11980:398::-;12182:2;12164:21;;;12221:2;12201:18;;;12194:30;12260:34;12255:2;12240:18;;12233:62;-1:-1:-1;;;12326:2:1;12311:18;;12304:32;12368:3;12353:19;;11980:398::o;12383:342::-;12585:2;12567:21;;;12624:2;12604:18;;;12597:30;-1:-1:-1;;;12658:2:1;12643:18;;12636:48;12716:2;12701:18;;12383:342::o;13009:355::-;13211:2;13193:21;;;13250:2;13230:18;;;13223:30;13289:33;13284:2;13269:18;;13262:61;13355:2;13340:18;;13009:355::o;13719:400::-;13921:2;13903:21;;;13960:2;13940:18;;;13933:30;13999:34;13994:2;13979:18;;13972:62;-1:-1:-1;;;14065:2:1;14050:18;;14043:34;14109:3;14094:19;;13719:400::o;14124:125::-;14164:4;14192:1;14189;14186:8;14183:34;;;14197:18;;:::i;:::-;-1:-1:-1;14234:9:1;;14124:125::o;15370:127::-;15431:10;15426:3;15422:20;15419:1;15412:31;15462:4;15459:1;15452:15;15486:4;15483:1;15476:15

Swarm Source

ipfs://971f630af5a30005a14f1cc34f61462f5cc321b223d3cc5646213c210ccf0edb
[ 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.