ETH Price: $2,444.65 (-1.08%)

Token

Onsenswap token (ON)

Overview

Max Total Supply

928,060.722222222198005964 ON

Holders

4,274

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
OnsenToken

Compiler Version
v0.8.9+commit.e5eed63a

ZkSolc Version
v1.3.5

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 9 : OnsenToken.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

import "../interfaces/tokens/IOnsenToken.sol";

/*
 * ON is Onsen's native ERC20 token.
 * It has an hard cap and manages its own emissions and allocations.
 */
contract OnsenToken is Ownable, ERC20("Onsenswap token", "ON"), IOnsenToken {
    using SafeMath for uint256;

    uint256 public constant MAX_EMISSION_RATE = 0.1 ether;
    uint256 public constant MAX_SUPPLY_LIMIT = 1000000 ether;
    uint256 public elasticMaxSupply; // Once deployed, controlled through governance only
    uint256 public emissionRate; // Token emission per second

    uint256 public override lastEmissionTime;
    uint256 public masterReserve; // Pending rewards for the master

    uint256 public constant ALLOCATION_PRECISION = 100;
    // Allocations emitted over time. When < 100%, the rest is minted into the treasury (default 15%)
    uint256 public farmingAllocation = 50; // = 50%
    uint256 public legacyAllocation; // V1 holders allocation

    address public masterAddress;
    address public treasuryAddress;

    address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD;

    constructor(uint256 maxSupply_, uint256 initialSupply, uint256 initialEmissionRate, address treasuryAddress_) {
        require(initialEmissionRate <= MAX_EMISSION_RATE, "invalid emission rate");
        require(maxSupply_ <= MAX_SUPPLY_LIMIT, "invalid initial maxSupply");
        require(initialSupply < maxSupply_, "invalid initial supply");
        require(treasuryAddress_ != address(0), "invalid treasury address");

        elasticMaxSupply = maxSupply_;
        emissionRate = initialEmissionRate;
        treasuryAddress = treasuryAddress_;

        _mint(msg.sender, initialSupply);
    }

    /********************************************/
    /****************** EVENTS ******************/
    /********************************************/

    event ClaimMasterRewards(uint256 amount);
    event AllocationsDistributed(uint256 masterShare, uint256 treasuryShare);
    event InitializeMasterAddress(address masterAddress);
    event InitializeEmissionStart(uint256 startTime);
    event UpdateAllocations(uint256 farmingAllocation, uint256 legacyAllocation, uint256 treasuryAllocation);
    event UpdateEmissionRate(uint256 previousEmissionRate, uint256 newEmissionRate);
    event UpdateMaxSupply(uint256 previousMaxSupply, uint256 newMaxSupply);
    event UpdateTreasuryAddress(address previousTreasuryAddress, address newTreasuryAddress);

    /***********************************************/
    /****************** MODIFIERS ******************/
    /***********************************************/

    /*
     * @dev Throws error if called by any account other than the master
     */
    modifier onlyMaster() {
        require(msg.sender == masterAddress, "OnsenToken: caller is not the master");
        _;
    }

    /**************************************************/
    /****************** PUBLIC VIEWS ******************/
    /**************************************************/

    /**
     * @dev Returns total master allocation
     */
    function masterAllocation() public view returns (uint256) {
        return farmingAllocation.add(legacyAllocation);
    }

    /**
     * @dev Returns master emission rate
     */
    function masterEmissionRate() public view override returns (uint256) {
        return emissionRate.mul(farmingAllocation.add(legacyAllocation)).div(ALLOCATION_PRECISION);
    }

    /**
     * @dev Returns treasury allocation
     */
    function treasuryAllocation() public view returns (uint256) {
        return uint256(ALLOCATION_PRECISION).sub(masterAllocation());
    }

    /*****************************************************************/
    /******************  EXTERNAL PUBLIC FUNCTIONS  ******************/
    /*****************************************************************/

    /**
     * @dev Mint rewards and distribute it between master and treasury
     *
     * Treasury share is directly minted to the treasury address
     * Master incentives are minted into this contract and claimed later by the master contract
     */
    function emitAllocations() public {
        uint256 circulatingSupply = totalSupply();
        uint256 currentBlockTimestamp = _currentBlockTimestamp();

        uint256 _lastEmissionTime = lastEmissionTime; // gas saving
        uint256 _maxSupply = elasticMaxSupply; // gas saving

        // if already up to date or not started
        if (currentBlockTimestamp <= _lastEmissionTime || _lastEmissionTime == 0) {
            return;
        }

        // if max supply is already reached or emissions deactivated
        if (_maxSupply <= circulatingSupply || emissionRate == 0) {
            lastEmissionTime = currentBlockTimestamp;
            return;
        }

        uint256 newEmissions = currentBlockTimestamp.sub(_lastEmissionTime).mul(emissionRate);

        // cap new emissions if exceeding max supply
        if (_maxSupply < circulatingSupply.add(newEmissions)) {
            newEmissions = _maxSupply.sub(circulatingSupply);
        }

        // calculate master and treasury shares from new emissions
        uint256 masterShare = newEmissions.mul(masterAllocation()).div(ALLOCATION_PRECISION);
        // sub to avoid rounding errors
        uint256 treasuryShare = newEmissions.sub(masterShare);

        lastEmissionTime = currentBlockTimestamp;

        // add master shares to its claimable reserve
        masterReserve = masterReserve.add(masterShare);
        // mint shares
        _mint(address(this), masterShare);
        _mint(treasuryAddress, treasuryShare);

        emit AllocationsDistributed(masterShare, treasuryShare);
    }

    /**
     * @dev Sends to Master contract the asked "amount" from masterReserve
     *
     * Can only be called by the MasterContract
     */
    function claimMasterRewards(uint256 amount) external override onlyMaster returns (uint256 effectiveAmount) {
        // update emissions
        emitAllocations();

        // cap asked amount with available reserve
        effectiveAmount = Math.min(masterReserve, amount);

        // if no rewards to transfer
        if (effectiveAmount == 0) {
            return effectiveAmount;
        }

        // remove claimed rewards from reserve and transfer to master
        masterReserve = masterReserve.sub(effectiveAmount);
        _transfer(address(this), masterAddress, effectiveAmount);
        emit ClaimMasterRewards(effectiveAmount);
    }

    /**
     * @dev Burns "amount" of ON by sending it to BURN_ADDRESS
     */
    function burn(uint256 amount) external override {
        _transfer(msg.sender, BURN_ADDRESS, amount);
    }

    /*****************************************************************/
    /****************** EXTERNAL OWNABLE FUNCTIONS  ******************/
    /*****************************************************************/

    /**
     * @dev Setup Master contract address
     *
     * Can only be initialized once
     * Must only be called by the owner
     */
    function initializeMasterAddress(address masterAddress_) external onlyOwner {
        require(masterAddress == address(0), "initializeMasterAddress: master already initialized");
        require(masterAddress_ != address(0), "initializeMasterAddress: master initialized to zero address");

        masterAddress = masterAddress_;
        emit InitializeMasterAddress(masterAddress_);
    }

    /**
     * @dev Set emission start time
     *
     * Can only be initialized once
     * Must only be called by the owner
     */
    function initializeEmissionStart(uint256 startTime) external onlyOwner {
        require(lastEmissionTime == 0, "initializeEmissionStart: emission start already initialized");
        require(_currentBlockTimestamp() < startTime, "initializeEmissionStart: invalid");

        lastEmissionTime = startTime;
        emit InitializeEmissionStart(startTime);
    }

    /**
     * @dev Updates emission allocations between farming incentives, legacy holders and treasury (remaining share)
     *
     * Must only be called by the owner
     */
    function updateAllocations(uint256 farmingAllocation_, uint256 legacyAllocation_) external onlyOwner {
        // apply emissions before changes
        emitAllocations();

        // total sum of allocations can't be > 100%
        uint256 totalAllocationsSet = farmingAllocation_.add(legacyAllocation_);
        require(totalAllocationsSet <= 100, "updateAllocations: total allocation is too high");

        // set new allocations
        farmingAllocation = farmingAllocation_;
        legacyAllocation = legacyAllocation_;

        emit UpdateAllocations(farmingAllocation_, legacyAllocation_, treasuryAllocation());
    }

    /**
     * @dev Updates ON emission rate per second
     *
     * Must only be called by the owner
     */
    function updateEmissionRate(uint256 emissionRate_) external onlyOwner {
        require(emissionRate_ <= MAX_EMISSION_RATE, "updateEmissionRate: can't exceed maximum");

        // apply emissions before changes
        emitAllocations();

        emit UpdateEmissionRate(emissionRate, emissionRate_);
        emissionRate = emissionRate_;
    }

    /**
     * @dev Updates ON max supply
     *
     * Must only be called by the owner
     */
    function updateMaxSupply(uint256 maxSupply_) external onlyOwner {
        require(maxSupply_ >= totalSupply(), "updateMaxSupply: can't be lower than current circulating supply");
        require(maxSupply_ <= MAX_SUPPLY_LIMIT, "updateMaxSupply: invalid maxSupply");

        emit UpdateMaxSupply(elasticMaxSupply, maxSupply_);
        elasticMaxSupply = maxSupply_;
    }

    /**
     * @dev Updates treasury address
     *
     * Must only be called by owner
     */
    function updateTreasuryAddress(address treasuryAddress_) external onlyOwner {
        require(treasuryAddress_ != address(0), "updateTreasuryAddress: invalid address");

        emit UpdateTreasuryAddress(treasuryAddress, treasuryAddress_);
        treasuryAddress = treasuryAddress_;
    }

    /********************************************************/
    /****************** INTERNAL FUNCTIONS ******************/
    /********************************************************/

    /**
     * @dev Utility function to get the current block timestamp
     */
    function _currentBlockTimestamp() internal view virtual returns (uint256) {
        /* solhint-disable not-rely-on-time */
        return block.timestamp;
    }
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 3 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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.openzeppelin.com/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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 4 of 9 : IERC20.sol
// 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 5 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 9 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 8 of 9 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 9 of 9 : IOnsenToken.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface IOnsenToken is IERC20 {
    function lastEmissionTime() external view returns (uint256);

    function claimMasterRewards(uint256 amount) external returns (uint256 effectiveAmount);

    function masterEmissionRate() external view returns (uint256);

    function burn(uint256 amount) external;
}

Settings
{
  "optimizer": {
    "enabled": true
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint256","name":"initialEmissionRate","type":"uint256"},{"internalType":"address","name":"treasuryAddress_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"masterShare","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"treasuryShare","type":"uint256"}],"name":"AllocationsDistributed","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ClaimMasterRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"InitializeEmissionStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"masterAddress","type":"address"}],"name":"InitializeMasterAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"farmingAllocation","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"legacyAllocation","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"treasuryAllocation","type":"uint256"}],"name":"UpdateAllocations","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousEmissionRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newEmissionRate","type":"uint256"}],"name":"UpdateEmissionRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousMaxSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"UpdateMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousTreasuryAddress","type":"address"},{"indexed":false,"internalType":"address","name":"newTreasuryAddress","type":"address"}],"name":"UpdateTreasuryAddress","type":"event"},{"inputs":[],"name":"ALLOCATION_PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_EMISSION_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimMasterRewards","outputs":[{"internalType":"uint256","name":"effectiveAmount","type":"uint256"}],"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":[],"name":"elasticMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emissionRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emitAllocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"farmingAllocation","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":"uint256","name":"startTime","type":"uint256"}],"name":"initializeEmissionStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"masterAddress_","type":"address"}],"name":"initializeMasterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastEmissionTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"legacyAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterEmissionRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"renounceOwnership","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":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"farmingAllocation_","type":"uint256"},{"internalType":"uint256","name":"legacyAllocation_","type":"uint256"}],"name":"updateAllocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"emissionRate_","type":"uint256"}],"name":"updateEmissionRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasuryAddress_","type":"address"}],"name":"updateTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010003172021a4c383c7fa459924ad9a342e0a544aa91c3ceb8a7ccb737fbb6b0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000000000000000000000009ed194db19b238c000000000000000000000000000000000000000000000000000000010729fa58404bd00000000000000000000000080ade27ea4215afdc6da7d20b5c183d0e84e9aa7

Deployed Bytecode

0x0002000000000002000c00000000000200010000000103550000006001100270000002a80010019d0000008001000039000000400010043f0000000101200190000000660000c13d0000000001000031000000040110008c000000a80000413d0000000101000367000000000101043b000000e001100270000002b60210009c000000ea0000613d000002b70210009c000000f50000613d000002b80210009c000001010000613d000002b90210009c000001100000613d000002ba0210009c0000011c0000613d000002bb0210009c000001260000613d000002bc0210009c000001320000613d000002bd0210009c0000013e0000613d000002be0210009c0000014a0000613d000002bf0210009c000001550000613d000002c00210009c000001610000613d000002c10210009c0000016d0000613d000002c20210009c000001770000613d000002c30210009c000001820000613d000002c40210009c0000018e0000613d000002c50210009c0000019a0000613d000002c60210009c000001a50000613d000002c70210009c000001af0000613d000002c80210009c000001bb0000613d000002c90210009c000001c50000613d000002ca0210009c000001d10000613d000002cb0210009c000001db0000613d000002cc0210009c000001e70000613d000002cd0210009c000001f30000613d000002ce0210009c000002020000613d000002cf0210009c0000020e0000613d000002d00210009c0000021a0000613d000002d10210009c000002260000613d000002d20210009c000002300000613d000002d30210009c0000023d0000613d000002d40210009c000002490000613d000002d50210009c000002560000613d000002d60210009c000002650000613d000002d70210009c0000026f0000613d000002d80210009c0000027b0000613d000002d90210009c000002850000613d000002da0210009c0000028f0000613d000002db0110009c000000a80000c13d0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0000006401000039000000800010043f0000008001000039000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000020000310000001f01200039000000200900008a000000000491016f000000400100043d0000000003140019000000000443004b00000000040000190000000104004039000002a90530009c000000e30000213d0000000104400190000000e30000c13d000000400030043f0000001f0320018f00000001040003670000000505200272000000840000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b0000007c0000413d000000000630004c000000930000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000002aa03000041000000800420008c00000000040000190000000004034019000002aa02200197000000000520004c000000000300a019000002aa0220009c00000000020400190000000002036019000000000220004c000000a80000c13d0000000003010433000000400210003900000000040204330000002002100039000000000202043300000060011000390000000005010433000002ab0150009c000000ab0000a13d000000000100001900000000020000190a99034b0000040f000000400700043d000002ac0170009c000000e30000213d0000004001700039000000400010043f0000000f0100003900000000001704350000002008700039000002ad010000410000000000180435000000400600043d000002ac0160009c000000e30000213d000400000008001d000b00000007001d0000004001600039000000400010043f0000002001600039000a00000002001d000002ae0200004100000000002104350000000201000039000600000006001d0000000000160435000000000100041a000002af021001970000000006000411000000000262019f000000000020041b000002a802000041000c00000003001d000000400300043d000900000004001d0000000004000414000800000005001d000002a80540009c0000000004028019000002a80530009c00000000020340190000004002200210000000c003400210000000000223019f000002ab05100197000002b0012001c70000800d020000390000000303000039000002b104000041000700000006001d000500000009001d0a990a8f0000040f0000000101200190000000a80000613d0000000b010000290000000002010433000002a90120009c000002990000a13d000002b50100004100000000001004350000004101000039000000040010043f000000240200003900000000010000190a99034b0000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0000dead02000039000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0000000b01000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0a9905670000040f0000000002010019000000400100043d000c00000001001d0a9904620000040f0000000c030000290000000002310049000000000103001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99047a0000040f0a9905fa0000040f0000000102000039000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a9904920000040f0a9909d30000040f000000400100043d000000000200001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0000000301000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a9904a60000040f0a9905ff0000040f0000000102000039000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0000000901000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0000001202000039000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99047a0000040f0a9906330000040f0000000102000039000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0a9907650000040f000000400300043d00000000001304350000002002000039000000000103001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a9904920000040f0a9908a90000040f000000400100043d000000000200001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f000002dd02000041000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0000000801000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0a99077f0000040f000000400300043d00000000001304350000002002000039000000000103001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f000002dc02000041000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a9904c20000040f0a9909000000040f000000400100043d000000000200001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a9904c20000040f0a9905ec0000040f000000400300043d00000000001304350000002002000039000000000103001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0a9905080000040f000000400100043d000000000200001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a9904920000040f0a9908650000040f000000400300043d00000000001304350000002002000039000000000103001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a9904c20000040f0a990a540000040f000000400100043d000000000200001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f000000000100041a000002ab02100197000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0000000a01000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0a9905a20000040f0000000002010019000000400100043d000c00000001001d0a9904620000040f0000000c030000290000000002310049000000000103001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0000000701000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99047a0000040f0a9906580000040f0000000102000039000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99047a0000040f0a9905f50000040f0000000102000039000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a9904d80000040f0a9909890000040f000000400100043d000000000200001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0000000d01000039000000000101041a000002ab02100197000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0a9907540000040f000000400300043d00000000001304350000002002000039000000000103001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0000000c01000039000000000101041a000002ab02100197000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a9904ee0000040f000c00000002001d0a9905dd0000040f0000000c020000290a9905e50000040f000000000201041a000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0a9907930000040f000000400100043d000000000200001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a99044f0000040f0000000601000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a9904920000040f0a990a0a0000040f000000400100043d000000000200001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a9904c20000040f0a9905360000040f000000400100043d000000000200001900000000030000190a9903410000040f0000000001000416000000000110004c000000a80000c13d00000000010000310a9904920000040f0a9909450000040f000000400100043d000000000200001900000000030000190a9903410000040f0000000401000039000300000001001d000000000101041a000200000002001d0a9903980000040f00000002040000290000000002010019000000200120008c000002b80000413d00000003010000290000000000100435000100000002001d000000200200003900000000010000190a99031d0000040f00000002040000290000001f024000390000000502200270000000200340008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000002b80000813d000000000001041b0000000101100039000002b30000013d0000001f0140008c000002d00000a13d000000030100002900000000001004350000002002000039000400000002001d00000000010000190a99031d0000040f000000040800002900000002070000290000000502000029000000000227016f000000000300001900000006050000290000000b06000029000000000423004b0000000004680019000002dd0000813d0000000004040433000000000041041b000000200330003900000020088000390000000101100039000002c70000013d000000000140004c00000000010000190000000605000029000002d60000613d000000040100002900000000010104330000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000002e90000013d000000000272004b000002e70000813d0000000302700210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b00000001010000390000000102700210000000000112019f0000000302000029000000000012041b00000000010500190a9903aa0000040f00000032010000390000000a02000039000000000012041b0000000901000029000002b20110009c000000000100001900000001010040390a9903540000040f0000000c01000029000002b30110009c000000000100001900000001010040390a9903650000040f0000000a010000290000000c02000029000000000121004b000000000100001900000001010040390a9903760000040f0000000801000029000002ab01100198000b00000001001d0000000001000019000000010100c0390a9903870000040f00000006010000390000000c02000029000000000021041b00000007010000390000000902000029000000000021041b0000000d01000039000000000201041a000002af022001970000000b03000029000000000232019f000000000021041b00000007010000290000000a020000290a9904090000040f00000020010000390000010000100443000001200000044300000100010000390000004002000039000002b4030000410a9903410000040f000002a803000041000002a80410009c000000000103801900000040011002100000006002200210000000000112019f0000000002000414000002a80420009c0000000002038019000000c0022002100000000001210019000002b00110004100008010020000390a990a940000040f00000001022001900000032f0000613d000000000101043b000000000001042d000000000100001900000000020000190a99034b0000040f000002a8010000410000000002000414000002a80320009c0000000001024019000000c001100210000002de011001c70000800b020000390a990a940000040f00000001022001900000033e0000613d000000000101043b000000000001042d000000000100001900000000020000190a99034b0000040f000002a804000041000002a80510009c000000000104801900000040011002100000000001310019000002a80320009c00000000020480190000006002200210000000000121001900000a9a0001042e000002a803000041000002a80420009c0000000002038019000002a80410009c000000000103801900000040011002100000006002200210000000000112019f00000a9b00010430000000000110004c000003570000613d000000000001042d000000400100043d0000004402100039000002df030000410000000000320435000000240210003900000015030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000064020000390a99034b0000040f000000000110004c000003680000613d000000000001042d000000400100043d0000004402100039000002e1030000410000000000320435000000240210003900000019030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000064020000390a99034b0000040f000000000110004c000003790000613d000000000001042d000000400100043d0000004402100039000002e2030000410000000000320435000000240210003900000016030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000064020000390a99034b0000040f000000000110004c0000038a0000613d000000000001042d000000400100043d0000004402100039000002e3030000410000000000320435000000240210003900000018030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000064020000390a99034b0000040f000000010210019000000001011002700000007f0310018f00000000010360190000001f0310008c00000000030000190000000103002039000000010330018f000000000232004b000003a30000c13d000000000001042d000002b50100004100000000001004350000002201000039000000040010043f000000240200003900000000010000190a99034b0000040f0004000000000002000200000001001d0000000001010433000400000001001d000002e40110009c000004020000813d0000000501000039000300000001001d000000000101041a0a9903980000040f0000000002010019000000200120008c0000000404000029000003ce0000413d00000003010000290000000000100435000100000002001d000000200200003900000000010000190a99031d0000040f00000004040000290000001f024000390000000502200270000000200340008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000003ce0000813d000000000001041b0000000101100039000003c90000013d0000001f0140008c000003e50000a13d000000030100002900000000001004350000002002000039000100000002001d00000000010000190a99031d0000040f00000001070000290000000405000029000000200200008a000000000225016f00000000030000190000000206000029000000000423004b0000000004670019000003f20000813d0000000004040433000000000041041b000000200330003900000020077000390000000101100039000003dc0000013d000000000140004c00000000010000190000000202000029000003eb0000613d000000200120003900000000010104330000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000003fe0000013d000000000252004b000003fc0000813d0000000302500210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b00000001010000390000000102500210000000000112019f0000000302000029000000000012041b000000000001042d000002b50100004100000000001004350000004101000039000000040010043f000000240200003900000000010000190a99034b0000040f00030000000000020000000005020019000002ab04100198000004370000613d000300000001001d000000010200008a000000000325013f0000000301000039000000000201041a000000000332004b000004450000213d0000000002520019000000000021041b0000000000400435000200000001001d0000000101000039000000200010043f00000040020000390000000001000019000100000005001d0a99031d0000040f000000000201041a00000001030000290000000002320019000000000021041b000000400100043d0000000000310435000002a8020000410000000003000414000002a80430009c0000000003028019000002a80410009c00000000010280190000004001100210000000c002300210000000000112019f000002e5011001c70000800d02000039000002e6040000410000000203000029000000000500001900000003060000290a990a8f0000040f00000001012001900000044c0000613d000000000001042d000000400100043d0000004402100039000002e703000041000000000032043500000024021000390000001f030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000064020000390a99034b0000040f000002b50100004100000000001004350000001101000039000000040010043f000000240200003900000000010000190a99034b0000040f000000000100001900000000020000190a99034b0000040f000000040110008a000000010200008a000002aa03000041000000000221004b00000000020000190000000002032019000002aa01100197000002aa0410009c0000000003008019000002aa01100167000002aa0110009c00000000010200190000000001036019000000000110004c0000045f0000613d000000000001042d000000000100001900000000020000190a99034b0000040f0000002003000039000000000031043500000000030204330000002004100039000000000034043500000040011000390000000004000019000000000534004b000004710000813d00000000054100190000002004400039000000000624001900000000060604330000000000650435000004690000013d000000000234004b000004750000a13d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d000000040110008a000002aa020000410000003f0310008c00000000030000190000000003022019000002aa01100197000000000410004c0000000002008019000002aa0110009c00000000010300190000000001026019000000000110004c0000048f0000613d00000001020003670000000401200370000000000101043b000002ab0310009c0000048f0000213d0000002402200370000000000202043b000000000001042d000000000100001900000000020000190a99034b0000040f000000040110008a000002aa020000410000001f0310008c00000000030000190000000003022019000002aa01100197000000000410004c0000000002008019000002aa0110009c00000000010300190000000001026019000000000110004c000004a30000613d00000004010000390000000101100367000000000101043b000000000001042d000000000100001900000000020000190a99034b0000040f000000040110008a000002aa020000410000005f0310008c00000000030000190000000003022019000002aa01100197000000000410004c0000000002008019000002aa0110009c00000000010300190000000001026019000000000110004c000004bf0000613d00000001030003670000000401300370000000000101043b000002ab0210009c000004bf0000213d0000002402300370000000000202043b000002ab0420009c000004bf0000213d0000004403300370000000000303043b000000000001042d000000000100001900000000020000190a99034b0000040f000000040110008a000002aa020000410000001f0310008c00000000030000190000000003022019000002aa01100197000000000410004c0000000002008019000002aa0110009c00000000010300190000000001026019000000000110004c000004d50000613d00000004010000390000000101100367000000000101043b000002ab0210009c000004d50000213d000000000001042d000000000100001900000000020000190a99034b0000040f000000040110008a000002aa020000410000003f0310008c00000000030000190000000003022019000002aa01100197000000000410004c0000000002008019000002aa0110009c00000000010300190000000001026019000000000110004c000004eb0000613d00000001020003670000000401200370000000000101043b0000002402200370000000000202043b000000000001042d000000000100001900000000020000190a99034b0000040f000000040110008a000002aa020000410000003f0310008c00000000030000190000000003022019000002aa01100197000000000410004c0000000002008019000002aa0110009c00000000010300190000000001026019000000000110004c000005050000613d00000001020003670000000401200370000000000101043b000002ab0310009c000005050000213d0000002402200370000000000202043b000002ab0320009c000005050000213d000000000001042d000000000100001900000000020000190a99034b0000040f0a9905230000040f000000000100041a000002af02100197000000000020041b000000400200043d000002a8030000410000000004000414000002a80540009c0000000004038019000002a80520009c00000000020380190000004002200210000000c003400210000000000223019f000002ab05100197000002b0012001c70000800d020000390000000303000039000002b10400004100000000060000190a990a8f0000040f0000000101200190000005200000613d000000000001042d000000000100001900000000020000190a99034b0000040f000000000100041a000002ab011001970000000002000411000000000121004b000005290000c13d000000000001042d000000400100043d0000004402100039000002e8030000410000000000320435000002e00200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000064020000390a99034b0000040f0001000000000002000100000001001d0a9905230000040f0000000106000029000002ab01600198000005530000613d000000000200041a000002af03200197000000000113019f000000000010041b000000400100043d000002a8030000410000000004000414000002a80540009c0000000004038019000002a80510009c00000000010380190000004001100210000000c003400210000000000113019f000002ab05200197000002b0011001c70000800d020000390000000303000039000002b1040000410a990a8f0000040f0000000101200190000005640000613d000000000001042d000000400100043d0000006402100039000002e90300004100000000003204350000004402100039000002ea030000410000000000320435000000240210003900000026030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000000100001900000000020000190a99034b0000040f0000000405000039000000000405041a000000010640019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000116004b000005940000c13d000000400100043d00000000002104350000002003100039000000000660004c000005890000c13d000001000200008a000000000224016f000000000023043500000020040000390000003f02400039000000200300008a000000000332016f0000000002130019000000000332004b00000000030000190000000103004039000002a90420009c0000059b0000213d00000001033001900000059b0000c13d000000400020043f000000000001042d0000000000500435000002eb050000410000000004000019000000000624004b0000057c0000813d0000000006340019000000000705041a0000000000760435000000200440003900000001055000390000058c0000013d000002b50100004100000000001004350000002201000039000000040010043f000000240200003900000000010000190a99034b0000040f000002b50100004100000000001004350000004101000039000000040010043f000000240200003900000000010000190a99034b0000040f0000000505000039000000000405041a000000010640019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000116004b000005cf0000c13d000000400100043d00000000002104350000002003100039000000000660004c000005c40000c13d000001000200008a000000000224016f000000000023043500000020040000390000003f02400039000000200300008a000000000332016f0000000002130019000000000332004b00000000030000190000000103004039000002a90420009c000005d60000213d0000000103300190000005d60000c13d000000400020043f000000000001042d0000000000500435000002ec050000410000000004000019000000000624004b000005b70000813d0000000006340019000000000705041a000000000076043500000020044000390000000105500039000005c70000013d000002b50100004100000000001004350000002201000039000000040010043f000000240200003900000000010000190a99034b0000040f000002b50100004100000000001004350000004101000039000000040010043f000000240200003900000000010000190a99034b0000040f000002ab0110019700000000001004350000000201000039000000200010043f000000400200003900000000010000190a99031d0000040f000000000001042d000002ab022001970000000000200435000000200010043f000000400200003900000000010000190a99031d0000040f000000000001042d000002ab0110019700000000001004350000000101000039000000200010043f000000400200003900000000010000190a99031d0000040f000000000101041a000000000001042d0000000003020019000000000201001900000000010004110a9906990000040f000000000001042d0000000003020019000000000201001900000000010004110a9907020000040f000000000001042d0005000000000002000500000003001d000200000002001d000400000001001d000002ab0110019700000000001004350000000201000039000000200010043f0000004002000039000300000002001d00000000010000190a99031d0000040f0000000002000411000100000002001d000002ab022001970000000000200435000000200010043f000000000100001900000003020000290a99031d0000040f000000000101041a000000010200008a000000000221004b000006200000613d00000004040000290000000502000029000000000221004b000006250000413d00000005020000290000000003210049000000000104001900000001020000290a9907020000040f0000000401000029000000020200002900000005030000290a9906990000040f000000000001042d000000400100043d0000004402100039000002ed03000041000000000032043500000024021000390000001d030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000064020000390a99034b0000040f0004000000000002000300000002001d000400000001001d0000000001000411000100000001001d00000000001004350000000201000039000000200010043f0000004002000039000200000002001d00000000010000190a99031d0000040f0000000402000029000002ab022001970000000000200435000000200010043f000000000100001900000002020000290a99031d0000040f0000000303000029000000010200008a000000000223013f000000000101041a000000000221004b000006510000213d0000000003310019000000010100002900000004020000290a9907020000040f000000000001042d000002b50100004100000000001004350000001101000039000000040010043f000000240200003900000000010000190a99034b0000040f0004000000000002000300000002001d000400000001001d0000000001000411000100000001001d00000000001004350000000201000039000000200010043f0000004002000039000200000002001d00000000010000190a99031d0000040f0000000402000029000002ab022001970000000000200435000000200010043f000000000100001900000002020000290a99031d0000040f0000000303000029000000000101041a000000000231004b000006740000413d0000000003310049000000010100002900000004020000290a9907020000040f000000000001042d000000400100043d0000006402100039000002ee0300004100000000003204350000004402100039000002ef030000410000000000320435000000240210003900000025030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000000110004c000006880000613d000000000001042d000000400100043d0000006402100039000002f00300004100000000003204350000004402100039000002f1030000410000000000320435000000240210003900000026030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f0008000000000002000002ab04100198000006dd0000613d000800000003001d000400000001001d000500000002001d000002ab01200198000300000001001d000006ee0000613d00000000004004350000000101000039000700000001001d000000200010043f0000004002000039000600000002001d0000000001000019000100000004001d0a99031d0000040f000000000201041a000200000002001d0000000801000029000000000112004b000000000100001900000001010080390a9906850000040f000000010100002900000000001004350000000701000029000000200010043f000000000100001900000006020000290a99031d0000040f000000080200002900000002030000290000000002230049000000000021041b000000030100002900000000001004350000000701000029000000200010043f000000000100001900000006020000290a99031d0000040f000000000201041a00000008030000290000000002320019000000000021041b000000400100043d0000000000310435000002a8020000410000000003000414000002a80430009c0000000003028019000002a80410009c00000000010280190000004001100210000000c002300210000000000112019f000002e5011001c70000800d020000390000000303000039000002e604000041000000040500002900000005060000290a990a8f0000040f0000000101200190000006ff0000613d000000000001042d000000400100043d0000006402100039000002f40300004100000000003204350000004402100039000002f5030000410000000000320435000000240210003900000025030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000400100043d0000006402100039000002f20300004100000000003204350000004402100039000002f3030000410000000000320435000000240210003900000023030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000000100001900000000020000190a99034b0000040f0005000000000002000002ab041001980000072f0000613d000300000003001d000400000001001d000500000002001d000002ab01200198000200000001001d000007400000613d00000000004004350000000201000039000000200010043f0000004002000039000100000002001d00000000010000190a99031d0000040f00000002020000290000000000200435000000200010043f000000000100001900000001020000290a99031d0000040f0000000302000029000000000021041b000000400100043d0000000000210435000002a8020000410000000003000414000002a80430009c0000000003028019000002a80410009c00000000010280190000004001100210000000c002300210000000000112019f000002e5011001c70000800d020000390000000303000039000002f604000041000000040500002900000005060000290a990a8f0000040f0000000101200190000007510000613d000000000001042d000000400100043d0000006402100039000002f90300004100000000003204350000004402100039000002fa030000410000000000320435000000240210003900000024030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000400100043d0000006402100039000002f70300004100000000003204350000004402100039000002f8030000410000000000320435000000240210003900000022030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000000100001900000000020000190a99034b0000040f0000000b01000039000000000101041a000000010200008a000000000321013f0000000a02000039000000000202041a000000000332004b0000075e0000213d0000000001210019000000000001042d000002b50100004100000000001004350000001101000039000000040010043f000000240200003900000000010000190a99034b0000040f0000000b01000039000000000301041a000000010200008a000000000523013f0000000701000039000000000101041a0000000a04000039000000000404041a000000000554004b000007780000213d0000000003430019000000000410004c000007750000613d00000000421200d9000000000223004b000007780000213d00000000211300a9000000642110011a000000000001042d000002b50100004100000000001004350000001101000039000000040010043f000000240200003900000000010000190a99034b0000040f0000000b01000039000000000101041a000000010200008a000000000321013f0000000a02000039000000000202041a000000000332004b0000078c0000213d0000000001210019000000640210008c0000078c0000213d0000006401100089000000000001042d000002b50100004100000000001004350000001101000039000000040010043f000000240200003900000000010000190a99034b0000040f00050000000000020000000601000039000000000101041a000400000001001d0000000801000039000200000001001d000000000101041a000500000001001d0000000301000039000000000101041a000300000001001d000002fb0100004100000000001004390a9903320000040f0000000503000029000000000230004c000008170000613d000000000131004b000008170000a13d00000004010000290000000302000029000000000121004b000008120000a13d0000000702000039000000000102041a000000000110004c000008120000613d000100000002001d000002fb0100004100000000001004390a9903320000040f000000050400002900000003060000290000000405000029000000000241004b000008180000413d0000000102000029000000000202041a0000000003410049000000000141004b000007c00000613d000000010100008a00000000413100d9000000000121004b000008180000413d00000000143200a9000000010700008a000000000174013f000000000116004b000008180000213d0000000001640019000000000115004b000007cb0000813d000000000165004b000008180000413d00000000046500490000000b01000039000000000101041a000000000371013f0000000a02000039000000000202041a000000000332004b000008180000213d0000000001210019000000000240004c000007d80000613d00000000324700d9000000000212004b000008180000413d00000000214100a9000000641210011a000000000124004b000008180000413d000002fb010000410000000000100439000400000004001d000300000007001d000500000002001d0a9903320000040f000000050500002900000004040000290000000202000029000000000012041b0000000301000029000000000315013f0000000901000039000000000201041a000000000332004b000008180000213d0000000002520019000000000021041b000000000100041000000000020500190a99081f0000040f000000050100002900000004020000290000000002120049000400000002001d0000000d01000039000000000101041a000002ab011001970a99081f0000040f000000400100043d00000020021000390000000403000029000000000032043500000005020000290000000000210435000002a8020000410000000003000414000002a80430009c0000000003028019000002a80410009c00000000010280190000004001100210000000c002300210000000000112019f000002fc011001c70000800d020000390000000103000039000002fd040000410a990a8f0000040f0000000101200190000008170000c13d000000000100001900000000020000190a99034b0000040f000002fb0100004100000000001004390a9903320000040f0000000202000029000000000012041b000000000001042d000002b50100004100000000001004350000001101000039000000040010043f000000240200003900000000010000190a99034b0000040f00030000000000020000000005020019000002ab041001980000084d0000613d000300000001001d000000010200008a000000000325013f0000000301000039000000000201041a000000000332004b0000085b0000213d0000000002520019000000000021041b0000000000400435000200000001001d0000000101000039000000200010043f00000040020000390000000001000019000100000005001d0a99031d0000040f000000000201041a00000001030000290000000002320019000000000021041b000000400100043d0000000000310435000002a8020000410000000003000414000002a80430009c0000000003028019000002a80410009c00000000010280190000004001100210000000c002300210000000000112019f000002e5011001c70000800d02000039000002e6040000410000000203000029000000000500001900000003060000290a990a8f0000040f0000000101200190000008620000613d000000000001042d000000400100043d0000004402100039000002e703000041000000000032043500000024021000390000001f030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000064020000390a99034b0000040f000002b50100004100000000001004350000001101000039000000040010043f000000240200003900000000010000190a99034b0000040f000000000100001900000000020000190a99034b0000040f0002000000000002000200000001001d0000000c01000039000100000001001d000000000101041a000002ab011001970000000002000411000000000112004b000008950000c13d0a9907930000040f0000000901000039000000000201041a0000000204000029000000000342004b0000000004024019000000000340004c000008930000613d0000000002420049000000000021041b0000000101000029000000000101041a000002ab0210019700000000010004100000000003040019000200000004001d0a9906990000040f000000400100043d00000002020000290000000000210435000002a8020000410000000003000414000002a80430009c0000000003028019000002a80410009c00000000010280190000004001100210000000c002300210000000000112019f000002e5011001c70000800d02000039000000010300003900000300040000410a990a8f0000040f00000002040000290000000101200190000008a60000613d0000000001040019000000000001042d000000400100043d0000006402100039000002fe0300004100000000003204350000004402100039000002ff030000410000000000320435000000240210003900000024030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000000100001900000000020000190a99034b0000040f0006000000000002000600000001001d0000000003000411000000000130004c000008ec0000613d000002ab01300197000200000001001d00000000001004350000000101000039000500000001001d000000200010043f0000004002000039000400000002001d0000000001000019000300000003001d0a99031d0000040f000000000201041a000100000002001d0000000601000029000000000112004b000000000100001900000001010080390a9906850000040f000000020100002900000000001004350000000501000029000000200010043f000000000100001900000004020000290a99031d0000040f000000060200002900000001030000290000000002230049000000000021041b0000dead01000039000200000001001d00000000001004350000000501000029000000200010043f000000000100001900000004020000290a99031d0000040f000000000201041a00000006030000290000000002320019000000000021041b000000400100043d0000000000310435000002a8020000410000000003000414000002a80430009c0000000003028019000002a80410009c00000000010280190000004001100210000000c002300210000000000112019f000002e5011001c70000800d020000390000000303000039000002e604000041000000030500002900000002060000290a990a8f0000040f0000000101200190000008fd0000613d000000000001042d000000400100043d0000006402100039000002f40300004100000000003204350000004402100039000002f5030000410000000000320435000000240210003900000025030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000000100001900000000020000190a99034b0000040f0001000000000002000100000001001d0a9905230000040f0000000c01000039000000000201041a000002ab03200198000009200000c13d0000000103000029000002ab03300198000009310000613d000002af02200197000000000232019f000000000021041b000000400100043d0000000000310435000002a8020000410000000003000414000002a80430009c0000000003028019000002a80410009c00000000010280190000004001100210000000c002300210000000000112019f000002e5011001c70000800d02000039000000010300003900000303040000410a990a8f0000040f0000000101200190000009420000613d000000000001042d000000400100043d000000640210003900000301030000410000000000320435000000440210003900000302030000410000000000320435000000240210003900000033030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000400100043d00000064021000390000030403000041000000000032043500000044021000390000030203000041000000000032043500000024021000390000003b030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000000100001900000000020000190a99034b0000040f0002000000000002000200000001001d0a9905230000040f0000000801000039000100000001001d000000000101041a000000000110004c000009680000c13d000002fb0100004100000000001004390a9903320000040f0000000202000029000000000121004b000009790000813d0000000101000029000000000021041b000000400100043d0000000000210435000002a8020000410000000003000414000002a80430009c0000000003028019000002a80410009c00000000010280190000004001100210000000c002300210000000000112019f000002e5011001c70000800d02000039000000010300003900000308040000410a990a8f0000040f0000000101200190000009860000613d000000000001042d000000400100043d00000064021000390000030503000041000000000032043500000044021000390000030603000041000000000032043500000024021000390000003b030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000400100043d000000440210003900000307030000410000000000320435000002e00200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000064020000390a99034b0000040f000000000100001900000000020000190a99034b0000040f0003000000000002000200000001001d000000010100008a000300000002001d000000000112013f000100000001001d0a9905230000040f0a9907930000040f00000002020000290000000101000029000000000121004b000009b80000413d00000003010000290000000001210019000000650110008c000009bf0000813d0000000a01000039000000000021041b0000000b010000390000000303000029000000000031041b0a99077f0000040f000000400200043d0000002003200039000000030400002900000000004304350000004003200039000000000013043500000002010000290000000000120435000002a8010000410000000003000414000002a80430009c0000000003018019000002a80420009c00000000010240190000004001100210000000c002300210000000000112019f00000309011001c70000800d0200003900000001030000390000030a040000410a990a8f0000040f0000000101200190000009d00000613d000000000001042d000002b50100004100000000001004350000001101000039000000040010043f000000240200003900000000010000190a99034b0000040f000000400100043d00000064021000390000030b03000041000000000032043500000044021000390000030c03000041000000000032043500000024021000390000002f030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000000100001900000000020000190a99034b0000040f0002000000000002000200000001001d0a9905230000040f0000000201000029000002b20110009c000009f60000813d0a9907930000040f0000000701000039000100000001001d000000000101041a000000400200043d0000002003200039000000020400002900000000004304350000000000120435000002a8010000410000000003000414000002a80430009c0000000003018019000002a80420009c00000000010240190000004001100210000000c002300210000000000112019f000002fc011001c70000800d0200003900000001030000390000030d040000410a990a8f0000040f000000010120019000000a070000613d00000002010000290000000102000029000000000012041b000000000001042d000000400100043d00000064021000390000030e03000041000000000032043500000044021000390000030f030000410000000000320435000000240210003900000028030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000000100001900000000020000190a99034b0000040f0002000000000002000200000001001d0a9905230000040f00000002040000290000000301000039000000000101041a000000000141004b00000a2f0000213d000002b30140009c00000a400000813d0000000601000039000100000001001d000000000101041a000000400200043d000000200320003900000000004304350000000000120435000002a8010000410000000003000414000002a80430009c0000000003018019000002a80420009c00000000010240190000004001100210000000c002300210000000000112019f000002fc011001c70000800d02000039000000010300003900000310040000410a990a8f0000040f000000010120019000000a510000613d00000002010000290000000102000029000000000012041b000000000001042d000000400100043d00000064021000390000031303000041000000000032043500000044021000390000031403000041000000000032043500000024021000390000003f030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000400100043d000000640210003900000311030000410000000000320435000000440210003900000312030000410000000000320435000000240210003900000022030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000000100001900000000020000190a99034b0000040f0003000000000002000300000001001d0a9905230000040f0000000301000029000002ab0310019800000a7b0000613d0000000d01000039000200000001001d000000000401041a000000400100043d0000002002100039000300000003001d0000000000320435000100000004001d000002ab024001970000000000210435000002a8020000410000000003000414000002a80430009c0000000003028019000002a80410009c00000000010280190000004001100210000000c002300210000000000112019f000002fc011001c70000800d02000039000000010300003900000315040000410a990a8f0000040f000000010120019000000a8c0000613d0000000101000029000002af011001970000000302000029000000000121019f0000000202000029000000000012041b000000000001042d000000400100043d0000006402100039000002e9030000410000000000320435000000440210003900000316030000410000000000320435000000240210003900000026030000390000000000320435000002e002000041000000000021043500000004021000390000002003000039000000000032043500000084020000390a99034b0000040f000000000100001900000000020000190a99034b0000040f00000a92002104210000000102000039000000000001042d000000000200001900000a910000013d00000a97002104230000000102000039000000000001042d000000000200001900000a960000013d00000a990000043200000a9a0001042e00000a9b00010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4f6e73656e7377617020746f6b656e00000000000000000000000000000000004f4e000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000016345785d8a000100000000000000000000000000000000000000000000d3c21bcecceda100000100000002000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fccc2813000000000000000000000000000000000000000000000000000000000495d11c0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000ba84cd20000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000027dede2d00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000039eb41890000000000000000000000000000000000000000000000000000000042966c6800000000000000000000000000000000000000000000000000000000436cc3d600000000000000000000000000000000000000000000000000000000439af45e000000000000000000000000000000000000000000000000000000004f3147ba00000000000000000000000000000000000000000000000000000000617d11260000000000000000000000000000000000000000000000000000000067c0f2780000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007813570500000000000000000000000000000000000000000000000000000000841e4561000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008f88bba30000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000096afc45000000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000b71144a400000000000000000000000000000000000000000000000000000000c5f956af00000000000000000000000000000000000000000000000000000000c68bb4c500000000000000000000000000000000000000000000000000000000d365a08e00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000e4ef9dce00000000000000000000000000000000000000000000000000000000ed424fd000000000000000000000000000000000000000000000000000000000f103b43300000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000fc1852fb00000000000000000000000000000000000000000000000000000000004fbf6b00000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000000000000000000000000000016345785d8a00000200000200000000000000000000000000000004000000000000000000000000696e76616c696420656d697373696f6e2072617465000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000696e76616c696420696e697469616c206d6178537570706c7900000000000000696e76616c696420696e697469616c20737570706c7900000000000000000000696e76616c69642074726561737572792061646472657373000000000000000000000000000000000000000000000000000000000000000100000000000000000200000000000000000000000000000000000020000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206d696e7420746f20746865207a65726f2061646472657373004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657264647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20618a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000000000000000000000000000000000004000000000000000000000000026c155e7637ca49a34c19c7f8cb8533322897de0808134df1a98f7155711168473746572000000000000000000000000000000000000000000000000000000004f6e73656e546f6b656e3a2063616c6c6572206973206e6f7420746865206d6145102e9ef2c4f14fd9f3e8510c4bb2ad67fe498584602f26647da23039f12531616c726561647920696e697469616c697a656400000000000000000000000000696e697469616c697a654d6173746572416464726573733a206d617374657220cba13eb1e65d2c1588ce6d10f862f4535cc67855c3f31e3d2732f8fb6b5317b2696e697469616c697a656420746f207a65726f206164647265737300000000006e20737461727420616c726561647920696e697469616c697a65640000000000696e697469616c697a65456d697373696f6e53746172743a20656d697373696f696e697469616c697a65456d697373696f6e53746172743a20696e76616c696410e116be9bb4f621259f592ccd7e00d783e796535f2a5f3bc91a79da0fc3456d0200000000000000000000000000000000000060000000000000000000000000a4a1bde80c0d4ba37d1bd0feec135fb515a9def4e8baee90221348069946b86c696f6e20697320746f6f20686967680000000000000000000000000000000000757064617465416c6c6f636174696f6e733a20746f74616c20616c6c6f63617416b9091836a63537907593ebc3a80f3528891f3575b10f58ad7dd9c29fd0d44f206d6178696d756d000000000000000000000000000000000000000000000000757064617465456d697373696f6e526174653a2063616e2774206578636565646a84334bf6663b783f2bbfcaf459b2cbc73570cf346a46d9e6a0f290fcf3ebfc6c790000000000000000000000000000000000000000000000000000000000007570646174654d6178537570706c793a20696e76616c6964206d6178537570707468616e2063757272656e742063697263756c6174696e6720737570706c79007570646174654d6178537570706c793a2063616e2774206265206c6f776572205634a90413b79beba6c5f37aa8f19d1aee84a5320ff20ac7bd1ac63280867d5c7570646174655472656173757279416464726573733a20696e76616c69642061

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

0x00000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000000000000000000000009ed194db19b238c000000000000000000000000000000000000000000000000000000010729fa58404bd00000000000000000000000080ade27ea4215afdc6da7d20b5c183d0e84e9aa7

-----Decoded View---------------
Arg [0] : maxSupply_ (uint256): 1000000000000000000000000
Arg [1] : initialSupply (uint256): 750000000000000000000000
Arg [2] : initialEmissionRate (uint256): 4629629629629629
Arg [3] : treasuryAddress_ (address): 0x80ADe27ea4215Afdc6Da7d20B5C183D0e84e9aa7

-----Encoded View---------------


[ 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.