Overview ERC20
Price
$0.00 @ 0.000001 ETH (-1.65%)
Fully Diluted Market Cap
Total Supply:
256,696,040.260264 ARBS
Holders:
10,932 addresses
Transfers:
-
Contract:
Decimals:
18
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
Arbswap is the only true Arbitrum-native DEX suite, offering the best Game-fi services on Nova and the smoothest trading experience on One.Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | ![]() | ARBS-USDT | $0.001 0.0000000 Btc | $83,016.00 84,286,977.000 ARBS | 73.7377% |
2 | ![]() | ARBS-USDT | $0.0009 0.0000000 Btc | $26,426.00 28,074,840.840 ARBS | 24.5610% |
3 | ![]() | ARBS-USDT | $0.001 0.0000000 Btc | $1,741.48 1,806,359.000 ARBS | 1.5803% |
4 | ![]() | 0XF50874F8246776CA4B89EEF471E718F70F38458F-0X82AF49447D8A07E3BD95BD0D56F35241523FBAB1 | $0.0009 0.0000000 Btc | $126.76 138,346.191 0XF50874F8246776CA4B89EEF471E718F70F38458F | 0.1210% |
Contract Name:
ArbswapToken
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract ArbswapToken is ERC20, Ownable { address public LiquidityMining; address public Staking; address public Community; address public Partnership; address public InitialLiquidity; address public Team; uint256 public constant MaxTotalSupply = 1e9 ether; uint256 public constant LiquidityMiningMaxSupply = 3e8 ether; uint256 public constant StakingMaxSupply = 5e7 ether; uint256 public constant CommunityMaxSupply = 25e7 ether; uint256 public constant PartnershipMaxSupply = 1e8 ether; uint256 public constant InitialLiquidityMaxSupply = 1e8 ether; uint256 public constant TeamMaxSupply = 2e8 ether; uint256 public liquidityMiningTotalSupply; uint256 public stakingTotalSupply; uint256 public communityTotalSupply; uint256 public partnershipTotalSupply; uint256 public initialLiquidityTotalSupply; uint256 public teamTotalSupply; event NewLiquidityMining(address indexed liquidityMining); event NewStaking(address indexed staking); event NewCommunity(address indexed community); event NewPartnership(address indexed partnership); event NewInitialLiquidity(address indexed initialLiquidity); event NewTeam(address indexed team); modifier onlyLiquidityMining() { require(msg.sender == LiquidityMining, "Not LiquidityMining"); _; } modifier onlyStaking() { require(msg.sender == Staking, "Not Staking"); _; } modifier onlyCommunity() { require(msg.sender == Community, "Not Community"); _; } modifier onlyPartnership() { require(msg.sender == Partnership, "Not Partnership"); _; } modifier onlyInitialLiquidity() { require(msg.sender == InitialLiquidity, "Not InitialLiquidity"); _; } modifier onlyTeam() { require(msg.sender == Team, "Not Team"); _; } constructor() ERC20("Arbswap Token", "ARBS") {} /** * @notice Mint by LiquidityMining * @param _to: _to * @param _amount: _amount * @dev Only callable by the LiquidityMining. * @dev This function will be called by MasterChef contract, no need to revert. */ function mintByLiquidityMining(address _to, uint256 _amount) external onlyLiquidityMining { if (liquidityMiningTotalSupply < LiquidityMiningMaxSupply) { uint256 mintAmount = (liquidityMiningTotalSupply + _amount) < LiquidityMiningMaxSupply ? _amount : (LiquidityMiningMaxSupply - liquidityMiningTotalSupply); liquidityMiningTotalSupply += mintAmount; _mint(_to, mintAmount); } } /** * @notice Mint by Staking * @param _to: _to * @param _amount: _amount * @dev Only callable by the Staking. * @dev This function will be called by staking contract, no need to revert. */ function mintByStaking(address _to, uint256 _amount) external onlyStaking { if (stakingTotalSupply < StakingMaxSupply) { uint256 mintAmount = (stakingTotalSupply + _amount) < StakingMaxSupply ? _amount : (StakingMaxSupply - stakingTotalSupply); stakingTotalSupply += mintAmount; _mint(_to, mintAmount); } } /** * @notice Mint by Community * @param _to: _to * @param _amount: _amount * @dev Only callable by the Community. */ function mintByCommunity(address _to, uint256 _amount) external onlyCommunity { require( communityTotalSupply < CommunityMaxSupply, "Exceeded maximum supply" ); uint256 mintAmount = (communityTotalSupply + _amount) < CommunityMaxSupply ? _amount : (CommunityMaxSupply - communityTotalSupply); communityTotalSupply += mintAmount; _mint(_to, mintAmount); } /** * @notice Mint by Partnership * @param _to: _to * @param _amount: _amount * @dev Only callable by the Partnership. */ function mintByPartnership(address _to, uint256 _amount) external onlyPartnership { require( partnershipTotalSupply < PartnershipMaxSupply, "Exceeded maximum supply" ); uint256 mintAmount = (partnershipTotalSupply + _amount) < PartnershipMaxSupply ? _amount : (PartnershipMaxSupply - partnershipTotalSupply); partnershipTotalSupply += mintAmount; _mint(_to, mintAmount); } /** * @notice Mint by InitialLiquidity * @param _to: _to * @param _amount: _amount * @dev Only callable by the InitialLiquidity. */ function mintByInitialLiquidity(address _to, uint256 _amount) external onlyInitialLiquidity { require( initialLiquidityTotalSupply < InitialLiquidityMaxSupply, "Exceeded maximum supply" ); uint256 mintAmount = (initialLiquidityTotalSupply + _amount) < InitialLiquidityMaxSupply ? _amount : (InitialLiquidityMaxSupply - initialLiquidityTotalSupply); initialLiquidityTotalSupply += mintAmount; _mint(_to, mintAmount); } /** * @notice Mint by Team * @param _to: _to * @param _amount: _amount * @dev Only callable by the Team. */ function mintByTeam(address _to, uint256 _amount) external onlyTeam { require(teamTotalSupply < TeamMaxSupply, "Exceeded maximum supply"); uint256 mintAmount = (teamTotalSupply + _amount) < TeamMaxSupply ? _amount : (TeamMaxSupply - teamTotalSupply); teamTotalSupply += mintAmount; _mint(_to, mintAmount); } /** * @notice Sets LiquidityMining * @param _liquidityMining: _liquidityMining * @dev Only callable by the contract owner. */ function setLiquidityMining(address _liquidityMining) external onlyOwner { require(_liquidityMining != address(0), "Cannot be zero address"); LiquidityMining = _liquidityMining; emit NewLiquidityMining(_liquidityMining); } /** * @notice Sets Staking * @param _staking: _staking * @dev Only callable by the contract owner. */ function setStaking(address _staking) external onlyOwner { require(_staking != address(0), "Cannot be zero address"); Staking = _staking; emit NewStaking(_staking); } /** * @notice Sets Community * @param _community: _community * @dev Only callable by the contract owner. */ function setCommunity(address _community) external onlyOwner { require(_community != address(0), "Cannot be zero address"); Community = _community; emit NewCommunity(_community); } /** * @notice Sets Partnership * @param _partnership: _partnership * @dev Only callable by the contract owner. */ function setPartnership(address _partnership) external onlyOwner { require(_partnership != address(0), "Cannot be zero address"); Partnership = _partnership; emit NewPartnership(_partnership); } /** * @notice Sets InitialLiquidity * @param _initialLiquidity: _initialLiquidity * @dev Only callable by the contract owner. */ function setInitialLiquidity(address _initialLiquidity) external onlyOwner { require(_initialLiquidity != address(0), "Cannot be zero address"); InitialLiquidity = _initialLiquidity; emit NewInitialLiquidity(_initialLiquidity); } /** * @notice Sets Team * @param _team: _team * @dev Only callable by the contract owner. */ function setTeam(address _team) external onlyOwner { require(_team != address(0), "Cannot be zero address"); Team = _team; emit NewTeam(_team); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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); }
// 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); }
// 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; } }
{ "optimizer": { "enabled": true, "runs": 999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"community","type":"address"}],"name":"NewCommunity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initialLiquidity","type":"address"}],"name":"NewInitialLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"liquidityMining","type":"address"}],"name":"NewLiquidityMining","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"partnership","type":"address"}],"name":"NewPartnership","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"staking","type":"address"}],"name":"NewStaking","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"team","type":"address"}],"name":"NewTeam","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"},{"inputs":[],"name":"Community","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CommunityMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"InitialLiquidity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"InitialLiquidityMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LiquidityMining","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LiquidityMiningMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Partnership","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PartnershipMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Staking","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"StakingMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Team","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamMaxSupply","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":[],"name":"communityTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"name":"initialLiquidityTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityMiningTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintByCommunity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintByInitialLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintByLiquidityMining","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintByPartnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintByStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintByTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnershipTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_community","type":"address"}],"name":"setCommunity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_initialLiquidity","type":"address"}],"name":"setInitialLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityMining","type":"address"}],"name":"setLiquidityMining","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_partnership","type":"address"}],"name":"setPartnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_staking","type":"address"}],"name":"setStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_team","type":"address"}],"name":"setTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600d81526c20b93139bbb0b8102a37b5b2b760991b6020808301918252835180850190945260048452634152425360e01b9084015281519192916200006391600391620000f2565b50805162000079906004906020840190620000f2565b50505062000096620000906200009c60201b60201c565b620000a0565b620001d5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001009062000198565b90600052602060002090601f0160209004810192826200012457600085556200016f565b82601f106200013f57805160ff19168380011785556200016f565b828001600101855582156200016f579182015b828111156200016f57825182559160200191906001019062000152565b506200017d92915062000181565b5090565b5b808211156200017d576000815560010162000182565b600181811c90821680620001ad57607f821691505b60208210811415620001cf57634e487b7160e01b600052602260045260246000fd5b50919050565b61236180620001e56000396000f3fe608060405234801561001057600080fd5b50600436106102ff5760003560e01c8063715018a61161019c578063b31a4f11116100ee578063dc79edfb11610097578063f57df22e11610071578063f57df22e14610698578063fb401ec1146106b8578063fc12ff28146106cb57600080fd5b8063dc79edfb1461062c578063dd62ed3e1461063f578063f2fde38b1461068557600080fd5b8063d58ea176116100c8578063d58ea176146105fd578063d95e9d1714610606578063da0f039d1461061957600080fd5b8063b31a4f11146105ce578063ba85c952146105e1578063c4834c30146105f457600080fd5b806393dd944311610150578063a457c2d71161012a578063a457c2d71461059f578063a6bf7d5c146105b2578063a9059cbb146105bb57600080fd5b806393dd94431461057757806395d89b4114610597578063a3a6dce31461030457600080fd5b806382e0e53d1161018157806382e0e53d146105345780638da5cb5b146105465780638ff390991461056457600080fd5b8063715018a61461052357806378fb0cba1461052b57600080fd5b8063238869a0116102555780633950935111610209578063648c8239116101e3578063648c8239146104ba57806368f9ee66146104da57806370a08231146104ed57600080fd5b806339509351146104755780634fee5c4e14610488578063639e01dd1461049a57600080fd5b8063244585b31161023a578063244585b31461044a578063313ce56714610453578063338e93f71461046257600080fd5b8063238869a01461042557806323b872dd1461043757600080fd5b8063173c6754116102b75780631aedf3d4116102915780631aedf3d4146103df5780631ecbc7db146103f2578063206878a41461041257600080fd5b8063173c67541461038957806318160ddd146103ce5780631a78e48b146103d657600080fd5b8063095cf5c6116102e8578063095cf5c61461033e578063095ea7b31461035357806315da0b021461037657600080fd5b8063067ac3261461030457806306fdde0314610329575b600080fd5b6103166a52b7d2dcc80cd2e400000081565b6040519081526020015b60405180910390f35b6103316106dd565b6040516103209190612122565b61035161034c3660046121be565b61076f565b005b6103666103613660046121e0565b6108e1565b6040519015158152602001610320565b6103516103843660046121be565b6108f9565b600a546103a99073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610320565b600254610316565b610316600c5481565b6103516103ed3660046121e0565b610a66565b6006546103a99073ffffffffffffffffffffffffffffffffffffffff1681565b6103516104203660046121be565b610bc6565b6103166acecb8f27f4200f3a00000081565b61036661044536600461220a565b610d33565b61031660105481565b60405160128152602001610320565b6103516104703660046121e0565b610d57565b6103666104833660046121e0565b610ea2565b6103166a295be96e6406697200000081565b600b546103a99073ffffffffffffffffffffffffffffffffffffffff1681565b6009546103a99073ffffffffffffffffffffffffffffffffffffffff1681565b6103516104e83660046121e0565b610eee565b6103166104fb3660046121be565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610351611039565b610316600e5481565b6103166aa56fa5b99019a5c800000081565b60055473ffffffffffffffffffffffffffffffffffffffff166103a9565b6103516105723660046121be565b6110c6565b6008546103a99073ffffffffffffffffffffffffffffffffffffffff1681565b610331611233565b6103666105ad3660046121e0565b611242565b610316600f5481565b6103666105c93660046121e0565b611313565b6103516105dc3660046121e0565b611321565b6103516105ef3660046121be565b61146c565b61031660115481565b610316600d5481565b6103516106143660046121e0565b6115d9565b6103166b033b2e3c9fd0803ce800000081565b61035161063a3660046121e0565b6116c7565b61031661064d366004612246565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6103516106933660046121be565b6117b1565b6007546103a99073ffffffffffffffffffffffffffffffffffffffff1681565b6103516106c63660046121be565b6118e1565b6103166af8277896582678ac00000081565b6060600380546106ec90612279565b80601f016020809104026020016040519081016040528092919081815260200182805461071890612279565b80156107655780601f1061073a57610100808354040283529160200191610765565b820191906000526020600020905b81548152906001019060200180831161074857829003601f168201915b5050505050905090565b60055473ffffffffffffffffffffffffffffffffffffffff1633146107f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116610872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43616e6e6f74206265207a65726f20616464726573730000000000000000000060448201526064016107ec565b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f206d730d55a81bf1fdfee2c0bf4c8464ea157549f83c21c1f2ab1619a2704b5a90600090a250565b6000336108ef818585611a4e565b5060019392505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461097a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ec565b73ffffffffffffffffffffffffffffffffffffffff81166109f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43616e6e6f74206265207a65726f20616464726573730000000000000000000060448201526064016107ec565b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517fcd522b2652c2c15d89aa349a4671138c31887ef87872622bfa065cbc6c610b9590600090a250565b60085473ffffffffffffffffffffffffffffffffffffffff163314610ae7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4e6f7420436f6d6d756e6974790000000000000000000000000000000000000060448201526064016107ec565b6acecb8f27f4200f3a000000600e5410610b5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4578636565646564206d6178696d756d20737570706c7900000000000000000060448201526064016107ec565b60006acecb8f27f4200f3a00000082600e54610b7991906122fc565b10610b9b57600e54610b96906acecb8f27f4200f3a000000612314565b610b9d565b815b905080600e6000828254610bb191906122fc565b90915550610bc190508382611c01565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ec565b73ffffffffffffffffffffffffffffffffffffffff8116610cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43616e6e6f74206265207a65726f20616464726573730000000000000000000060448201526064016107ec565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f2f6f242f1d1797f5cb5529a4414e5e72eb51eb2e47bac2d8894f6b59561d316790600090a250565b600033610d41858285611d21565b610d4c858585611df8565b506001949350505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610dd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4e6f7420496e697469616c4c697175696469747900000000000000000000000060448201526064016107ec565b6a52b7d2dcc80cd2e400000060105410610e4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4578636565646564206d6178696d756d20737570706c7900000000000000000060448201526064016107ec565b60006a52b7d2dcc80cd2e400000082601054610e6a91906122fc565b10610e8c57601054610e87906a52b7d2dcc80cd2e4000000612314565b610e8e565b815b90508060106000828254610bb191906122fc565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906108ef9082908690610ee99087906122fc565b611a4e565b60095473ffffffffffffffffffffffffffffffffffffffff163314610f6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4e6f7420506172746e657273686970000000000000000000000000000000000060448201526064016107ec565b6a52b7d2dcc80cd2e4000000600f5410610fe5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4578636565646564206d6178696d756d20737570706c7900000000000000000060448201526064016107ec565b60006a52b7d2dcc80cd2e400000082600f5461100191906122fc565b1061102357600f5461101e906a52b7d2dcc80cd2e4000000612314565b611025565b815b905080600f6000828254610bb191906122fc565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ec565b6110c460006120ab565b565b60055473ffffffffffffffffffffffffffffffffffffffff163314611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ec565b73ffffffffffffffffffffffffffffffffffffffff81166111c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43616e6e6f74206265207a65726f20616464726573730000000000000000000060448201526064016107ec565b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f2c6713130292411e5e1bab429ca8ac9d5028b9e81f3a25fdadd4532bc4f875d890600090a250565b6060600480546106ec90612279565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611306576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016107ec565b610d4c8286868403611a4e565b6000336108ef818585611df8565b600b5473ffffffffffffffffffffffffffffffffffffffff1633146113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f4e6f74205465616d00000000000000000000000000000000000000000000000060448201526064016107ec565b6aa56fa5b99019a5c800000060115410611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4578636565646564206d6178696d756d20737570706c7900000000000000000060448201526064016107ec565b60006aa56fa5b99019a5c80000008260115461143491906122fc565b1061145657601154611451906aa56fa5b99019a5c8000000612314565b611458565b815b90508060116000828254610bb191906122fc565b60055473ffffffffffffffffffffffffffffffffffffffff1633146114ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ec565b73ffffffffffffffffffffffffffffffffffffffff811661156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43616e6e6f74206265207a65726f20616464726573730000000000000000000060448201526064016107ec565b600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517fcf17f8c3c3843778036b5f0767e2a87bff6234c216acf092f4a6e7ad0c7c5dbb90600090a250565b60075473ffffffffffffffffffffffffffffffffffffffff16331461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4e6f74205374616b696e6700000000000000000000000000000000000000000060448201526064016107ec565b6a295be96e64066972000000600d5410156116c35760006a295be96e6406697200000082600d5461168b91906122fc565b106116ad57600d546116a8906a295be96e64066972000000612314565b6116af565b815b905080600d6000828254610bb191906122fc565b5050565b60065473ffffffffffffffffffffffffffffffffffffffff163314611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f74204c69717569646974794d696e696e670000000000000000000000000060448201526064016107ec565b6af8277896582678ac000000600c5410156116c35760006af8277896582678ac00000082600c5461177991906122fc565b1061179b57600c54611796906af8277896582678ac000000612314565b61179d565b815b905080600c6000828254610bb191906122fc565b60055473ffffffffffffffffffffffffffffffffffffffff163314611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ec565b73ffffffffffffffffffffffffffffffffffffffff81166118d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107ec565b6118de816120ab565b50565b60055473ffffffffffffffffffffffffffffffffffffffff163314611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ec565b73ffffffffffffffffffffffffffffffffffffffff81166119df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43616e6e6f74206265207a65726f20616464726573730000000000000000000060448201526064016107ec565b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517fecfdd73265684bc58aff0a77d7087cd3e7c65d57691396e957799b07f6272a5190600090a250565b73ffffffffffffffffffffffffffffffffffffffff8316611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107ec565b73ffffffffffffffffffffffffffffffffffffffff8216611b93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107ec565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8216611c7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016107ec565b8060026000828254611c9091906122fc565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290611cca9084906122fc565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611df25781811015611de5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107ec565b611df28484848403611a4e565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107ec565b73ffffffffffffffffffffffffffffffffffffffff8216611f3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107ec565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611ff4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107ec565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906120389084906122fc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161209e91815260200190565b60405180910390a3611df2565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b8181101561214f57858101830151858201604001528201612133565b81811115612161576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146121b957600080fd5b919050565b6000602082840312156121d057600080fd5b6121d982612195565b9392505050565b600080604083850312156121f357600080fd5b6121fc83612195565b946020939093013593505050565b60008060006060848603121561221f57600080fd5b61222884612195565b925061223660208501612195565b9150604084013590509250925092565b6000806040838503121561225957600080fd5b61226283612195565b915061227060208401612195565b90509250929050565b600181811c9082168061228d57607f821691505b602082108114156122c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561230f5761230f6122cd565b500190565b600082821015612326576123266122cd565b50039056fea264697066735822122069b38a552a3388dd49e7efa20c111845e7846e47e3c0f4dbdab0924f7775a76064736f6c634300080a0033